A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 乔兵 高级黑马   /  2013-10-8 06:29  /  1291 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

1. 用jacob
其实jacob是一个bridage,连接java和com或者win32函数的一个中间件,jacob并不能直接抽取word,excel等文件,需要自己写dll哦,不过已经有为你写好的了,就是jacob的作者一并提供了。
jacob jar与dll文件下载: http://danadler.com/jacob/
下载了jacob并放到指定的路径之后(dll放到path,jar文件放到classpath),就可以写你自己的抽取程序了,下面是一个简单的例子:
  1. import java.io.File;
  2. import com.jacob.com.*;
  3. import com.jacob.activeX.*;
  4. /**
  5. * Title: pdf extraction
  6. */
  7. public class FileExtracter {

  8. public static void main(String[] args) {
  9.   ActiveXComponent component = new ActiveXComponent("Word.Application");
  10.   String inFile = "c:\\test.doc";
  11.   String tpFile = "c:\\temp.htm";
  12.   String otFile = "c:\\temp.XML";
  13.   boolean flag = false;
  14.   try {
  15.    component.setProperty("Visible", new Variant(false));
  16.    Object wordacc = component.getProperty("document.").toDispatch();
  17.    Object wordfile = Dispatch.invoke(wordacc,"Open", Dispatch.Method,
  18.    new Object[]{inFile,new Variant(false), new Variant(true)},
  19.    new int[1] ).toDispatch();
  20.    Dispatch.invoke(wordfile,"SaveAs", Dispatch.Method, new Object[]{tpFile,new  Variant(8)}, new int[1]);
  21.    Variant f = new Variant(false);
  22.    Dispatch.call(wordfile, "Close", f);
  23.    flag = true;
  24.   } catch (Exception e) {
  25.    e.printStackTrace();
  26.   } finally {
  27.    component.invoke("Quit", new Variant[] {});
  28.   }
  29. }
  30. }
复制代码
2.用apache的poi来抽取word,excel。
poi是apache的一个项目,不过就算用poi你可能都觉得很烦,不过不要紧,这里提供了更加简单的一个接口给你:
下载经过封装后的poi包: http://jakarta.apache.org/poi/
下载之后,放到你的classpath就可以了,下面是如何使用它的一个例子:
  1. import java.io.*;
  2. import org.textmining.text.extraction.WordExtractor;
  3. /**
  4. * Title: word extraction
  5. */

  6. public class PdfExtractor {

  7. public PdfExtractor() {
  8. }

  9. public static void main(String args[]) throws Exception {
  10.   FileInputStream in = new FileInputStream ("c:\\a.doc");
  11.   WordExtractor extractor = new WordExtractor();
  12.   String str = extractor.extractText(in);
  13.   System.out.println("the result length is"+str.length());
  14.   System.out.println("the result is"+str);
  15. }
  16. }
复制代码
3.pdfbox-用来抽取pdf文件
但是pdfbox对中文支持还不好,先下载pdfbox: http://www.pdfbox.org/
下面是一个如何使用pdfbox抽取pdf文件的例子:
  1. import org.pdfbox.pdmodel.PDdocument.
  2. import org.pdfbox.pdfparser.PDFParser;
  3. import java.io.*;
  4. import org.pdfbox.util.PDFTextStripper;
  5. import java.util.Date;
  6. /**
  7. * Title: pdf extraction
  8. */

  9. public class PdfExtracter{

  10. public PdfExtracter(){
  11. }

  12. public String GetTextFromPdf(String filename) throws Exception {
  13.   String temp=null;
  14.   PDdocument.nbsppdfdocument.null;
  15.   FileInputStream is=new FileInputStream(filename);
  16.   PDFParser parser = new PDFParser( is );
  17.   parser.parse();
  18.   pdfdocument.nbsp= parser.getPDdocument.);
  19.   ByteArrayOutputStream out = new ByteArrayOutputStream();
  20.   OutputStreamWriter writer = new OutputStreamWriter( out );
  21.   PDFTextStripper stripper = new PDFTextStripper();
  22.   stripper.writeText(pdfdocument.getdocument.), writer );
  23.   writer.close();
  24.   byte[] contents = out.toByteArray();
  25.   String ts=new String(contents);
  26.   System.out.println("the string length is"+contents.length+"\n");
  27.   return ts;
  28. }

  29. public static void main(String args[]) {
  30.   PdfExtracter pf=new PdfExtracter();
  31.   PDdocument.nbsppdfdocument.nbsp= null;
  32.   try{
  33.    String ts=pf.GetTextFromPdf("c:\\a.pdf");
  34.    System.out.println(ts);
  35.   } catch(Exception e) {
  36.    e.printStackTrace();
  37.   }
  38. }
  39. }
复制代码
4. 抽取支持中文的pdf文件-xpdf
xpdf是一个开源项目,我们可以调用他的本地方法来实现抽取中文pdf文件。
下载xpdf函数包: http://www.foolabs.com/xpdf/
同时需要下载支持中文的补丁包,按照readme放好中文的patch,就可以开始写调用本地方法的java程序了。
下面是一个如何调用的例子:
  1. import java.io.*;
  2. /**
  3. * Title: pdf extraction
  4. */

  5. public class PdfWin {

  6. public PdfWin() {
  7. }

  8. public static void main(String args[]) throws Exception {
  9.   String PATH_TO_XPDF="C:\\Program Files\\xpdf\\pdftotext.exe";
  10.   String filename="c:\\a.pdf";
  11.   String[] cmd = new String[] { PATH_TO_XPDF, "-enc", "UTF-8", "-q", filename, "-"};
  12.   Process p = Runtime.getRuntime().exec(cmd);
  13.   BufferedInputStream bis = new BufferedInputStream(p.getInputStream());
  14.   InputStreamReader reader = new InputStreamReader(bis, "UTF-8");
  15.   StringWriter out = new StringWriter();
  16.   char [] buf = new char[10000];
  17.   int len;
  18.   while((len = reader.read(buf))>= 0) {
  19.    //out.write(buf, 0, len);
  20.    System.out.println("the length is"+len);
  21.   }
  22.   reader.close();
  23.   String ts=new String(buf);
  24.   System.out.println("the str is"+ts);
  25. }
  26. }
复制代码

2 个回复

倒序浏览
To 金牌黑马 2013-10-8 07:47:24
沙发
looklook                    
回复 使用道具 举报
神之梦 来自手机 金牌黑马 2013-10-8 10:31:19
藤椅
貌似很犀利的样子
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马