⑴ 怎么读取pdf格式的文件,并在页面上显示
如果你只是读取内容,那么的话,很多开源的jar LS说的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:\Documents
and
Settings\你的用户名\桌面\你隐藏的文件名称.doc
如果不知道的话
我的电脑--工具--文件来选项--查看--勾选“显示所有文件”