如何显示文件页面上端|怎么读取pdf格式的文件并在页面上显示

⑴ 怎么读取pdf格式的文件,并在页面上显示

如果你只是读取内容,那么的话,很多开源的jarLS说的pdfbox还有itext也很强大,精确的读取public class ReaderForPDF {/*** 读PDF文件,使用了pdfbox开源项目* @param fileName*/public void readPDF(String fileName) {File file = new File(fileName);FileInputStream in = null;try {in = new FileInputStream(fileName);//新建一个PDF解析器对象PDFParser parser = new PDFParser(in);//对PDF文件进行解析parser.parse();//获取解析后得到的PDF文档对象PDDocument pdfdocument = parser.getPDDocument();//新建一个PDF文本剥离器PDFTextStripper stripper = new PDFTextStripper();//从PDF文档对象中剥离文本String result = stripper.getText(pdfdocument);System.out.println("PDF文件" + file.getAbsolutePath() + "的文本内容如下:");System.out.println(result);} catch (Exception e) {System.out.println("读取PDF文件"+ file.getAbsolutePath() + "生失败!" + e);e.printStackTrace();} finally {if (in != null){try {in.close();} catch (IOException e1) {}}}}public static void main(String[] args) {ReaderForPDF pdf = new ReaderForPDF();String fileName = "src/tempPDF.pdf";try {pdf.readPDF(fileName);

⑵ 怎样把放在桌面上的文件显示出来

如果你知道这个文件的名称在这个文件夹C:\DocumentsandSettings\你的用户名\桌面\你隐藏的文件名称.doc如果不知道的话我的电脑--工具--文件来选项--查看--勾选“显示所有文件”


赞 (0)