网站首页
JSP空间
动态资讯
开源项目
技术文档
资源下载
J2EE资源
客户论坛
在线支付
 
  技术文档>>JAVA>>新手入门>>基础入门>查看文档  
  java抽取word和pdf格式文件的四种武器     
  文章作者:未知  文章来源:水木森林  
  查看:90次  录入:管理员--2007-11-17  
 

  很多人用java进行文档操作时经常会遇到一个问题,就是如何获得word,excel,pdf等文档的内容?我研究了一下,在这里总结一下抽取word,pdf的几种方法。

  1. 用jacob

  其实jacob是一个bridage,连接java和com或者win32函数的一个中间件,jacob并不能直接抽取word,excel等文件,需要自己写dll哦,不过已经有为你写好的了,就是jacob的作者一并提供了。

  jacob jar与dll文件下载: http://danadler.com/jacob/

  下载了jacob并放到指定的路径之后(dll放到path,jar文件放到classpath),就可以写你自己的抽取程序了,下面是一个简单的例子:

import java.io.file;
import com.jacob.com.*;
import com.jacob.activex.*;
/**
* title: pdf extraction
* description: email:chris@matrix.org.cn
* copyright: matrix copyright (c) 2003
* company: matrix.org.cn
* @author chris
* @version 1.0,who use this example pls remain the declare
*/
public class fileextracter{
public static void main(string[] args) {
activexcomponent component = new activexcomponent("word.application");
string infile = "c:test.doc";
string tpfile = "c:temp.htm";
string otfile = "c:temp.xml";
boolean flag = false;
try {
component.setproperty("visible", new variant(false));
object wordacc = component.getproperty("document.").todispatch();
object wordfile = dispatch.invoke(wordacc,"open", dispatch.method,
new object[]{infile,new variant(false), new variant(true)},
new int[1] ).todispatch();
dispatch.invoke(wordfile,"saveas", dispatch.method, new object[]{
tpfile,new variant(8)}, new int[1]);
variant f = new variant(false);
dispatch.call(wordfile, "close", f);
flag = true;
} catch (exception e) {
e.printstacktrace();
} finally {
component.invoke("quit", new variant[] {});
}
}
}

  2. 用apache的poi来抽取word,excel

  poi是apache的一个项目,不过就算用poi你可能都觉得很烦,不过不要紧,这里提供了更加简单的一个接口给你:

  下载经过封装后的poi包: http://jakarta.apache.org/poi/

  下载之后,放到你的classpath就可以了,下面是如何使用它的一个例子:

import java.io.*;
import org.textmining.text.extraction.wordextractor;
/**
* title: word extraction
* description: email:chris@matrix.org.cn
* copyright: matrix copyright (c) 2003
* company: matrix.org.cn
* @author chris
* @version 1.0,who use this example pls remain the declare
*/
public class pdfextractor {
public pdfextractor() {
}
public static void main(string args[]) throws exception
{
fileinputstream in = new fileinputstream ("c:a.doc");
wordextractor extractor = new wordextractor();
string str = extractor.extracttext(in);
system.out.println("the result length is"+str.length());
system.out.println("the result is"+str);
}
}
public class pdfextractor {
public pdfextractor() { }
public static void main(string args[])
throws exception {
fileinputstream in = new fileinputstream ("c:a.doc");
wordextractor extractor = new wordextractor();
string str = extractor.extracttext(in);
system.out.println("the result length is"+str.length());
system.out.println("the result is"+str);
} }

  3. pdfbox-用来抽取pdf文件

  但是pdfbox对中文支持还不好,先下载pdfbox: http://www.pdfbox.org/

  下面是一个如何使用pdfbox抽取pdf文件的例子:

import org.pdfbox.pdmodel.pddocument.
import org.pdfbox.pdfparser.pdfparser;
import java.io.*;
import org.pdfbox.util.pdftextstripper;
import java.util.date;
/**
* title: pdf extraction
* description: email:chris@matrix.org.cn
* copyright: matrix copyright (c) 2003
* company: matrix.org.cn
* @author chris
* @version 1.0,who use this example pls remain the declare
*/
public class pdfextracter{
public pdfextracter(){
}
public string gettextfrompdf(string filename) throws exception
{
string temp=null;
pddocument.nbsppdfdocument.null;
fileinputstream is=new fileinputstream(filename);
pdfparser parser = new pdfparser( is );
parser.parse();
pdfdocument.nbsp= parser.getpddocument.);
bytearrayoutputstream out = new bytearrayoutputstream();
outputstreamwriter writer = new outputstreamwriter( out );
pdftextstripper stripper = new pdftextstripper();
stripper.writetext(pdfdocument.getdocument.), writer );
writer.close();
byte[] contents = out.tobytearray();
string ts=new string(contents);
system.out.println("the string length is"+contents.length+"
");
return ts;
}
public static void main(string args[])
{
pdfextracter pf=new pdfextracter();
pddocument.nbsppdfdocument.nbsp= null;
try{
string ts=pf.gettextfrompdf("c:a.pdf");
system.out.println(ts);
}
catch(exception e)
{
e.printstacktrace();
}
}
}

  4. 抽取支持中文的pdf文件-xpdf

  xpdf是一个开源项目,我们可以调用他的本地方法来实现抽取中文pdf文件。

  下载xpdf函数包: http://www.foolabs.com/xpdf/

  同时需要下载支持中文的补丁包,按照readme放好中文的patch,就可以开始写调用本地方法的java程序了。

  下面是一个如何调用的例子:

import java.io.*;
/**
* title: pdf extraction
* description: email:chris@matrix.org.cn
* copyright: matrix copyright (c) 2003
* company: matrix.org.cn
* @author chris
* @version 1.0,who use this example pls remain the declare
*/
public class pdfwin {
public pdfwin() {
}
public static void main(string args[]) throws exception
{
string path_to_xpdf="c:program filesxpdfpdftotext.exe";
string filename="c:a.pdf";
string[] cmd = new string[] { path_to_xpdf, "-enc", "utf-8", "-q", filename, "-"};
process p = runtime.getruntime().exec(cmd);
bufferedinputstream bis = new bufferedinputstream(p.getinputstream());
inputstreamreader reader = new inputstreamreader(bis, "utf-8");
stringwriter out = new stringwriter();
char [] buf = new char[10000];
int len;
while((len = reader.read(buf))>= 0) {
//out.write(buf, 0, len);
system.out.println("the length is"+len);
}
reader.close();
string ts=new string(buf);
system.out.println("the str is"+ts);
}
}

 
 
上一篇: java入门视频教程-第68讲    下一篇: 《学不会的java,消不了的忧愁》之五
  相关文档
java技术与xml常见问题之jaxm 11-17
java程序类的加载及其反射机制全面介绍 11-16
在j2ee中applet和html作为客户端的比较 11-16
java高级编程之displaytag学习摘要 11-17
开发nokias40系列应用程序初级篇 11-17
java无线开发教程之一 11-16
教你如何利用javacc将hql转换为sql 11-17
浅析java中data类的应用 11-16
正则表达式概述及在java中的使用 11-17
java 消息服务: 终于有了标准 11-17
java 理论与实践: 用弱引用堵住内存泄漏 11-17
writeline 方法 11-16
在java应用软件中加入logging 11-17
more jsp 的编程实践 ( 下 ) 11-17
java手机,好一场龙争虎斗 11-17
表现层框架之争 jsf与struts的异同 11-17
java servlet api类库中的基本方法介绍 11-17
服务器安全技术分析:jsp漏洞大观 11-17
javascript实现网页图片等比例缩放效果 06-26
eclipse的图形化工具加速btt5.1 11-17
返回首页 | 关于我们 | J网章程 | JSP空间合租 | 客服中心 | 免责声明 | 常见问题 | 参观机房
本站主机空间代理至厦门市华众网络科技有限公司
《中华人民共和国增值电信业务经营许可证》
编号:闽B2-20050079
@2005-2008福建JSP技术网 版权所有 闽ICP备05000928号
技术电话:13616026886
邮箱:admin@fjjsp.com 站长QQ,点击这里给我发消息