提取chm中的html,探讨一个从chm文件中提取自己想要的信息与数据的算法。我先说...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

如下面这个,就是生成htm文件的

========

第一步:下载chm4j.jar

第二步:新建java工程,建一个解析ParseChm类,建一个解析测试类,类似:

ParseChm类:

//下面的包,请导入chm4j.jar,并且把chm4j.dll拷贝到jre的lib目录内,linux或mac请拷贝libchm4j.so即//可,因为chm4j.jar依赖于c++

packagecn.lswe.baseframe.utils;

importjava.io.File;

importjava.io.FileOutputStream;importjava.io.IOException;importjava.io.InputStream;importjava.io.OutputStream;

importorg.chm4j.*;

importcn.lswe.baseframe.validator.Conf;

publicclassParseChm{

publicstaticvoidmain(String...args){

try{

ChmFilecFile=newChmFile(Conf.ChmSOurce);Stringdir=Conf.dir;

ChmEntry.Attributeattributes=ChmEntry.Attribute.ALL;ChmEntry[]entries=cFile.entries(attributes);

for(ChmEntryentry:entries){listChmEntry(dir,entry,attributes);

}

}catch(IOExceptionex){

System.out.println("Error:"+ex.getMessage());

}

}

/**

*ExtractsrecursivelythesubentriesofthespecifiedChmEntryintothe

*specifiedoutputdirectoryaccordingtothespecifiedattributes.

*@paramoutputTheoutputdirectory.

*@paramentry

*@paramattributes

*@throwsjava.io.IOExceptionIfanI/Oerroroccurs.

*/

privatestaticvoidlistChmEntry(Stringoutput,ChmEntryentry,ChmEntry.Attributeattributes)throwsIOException{

printEntry(entry);

Stringer=GuidHelper.CreateGuid().toString();Filedest=newFile(output,entry.getPath());

if(entry.hasAttribute(ChmEntry.Attribute.DIRECTORY)){if(!dest.isDirectory()){

if(!dest.mkdirs()){

thrownewIOException("failedtocreatedirectory:"+dest);

}

}

for(ChmEntrye:entry.entries(attributes)){listChmEntry(output,e,attributes);

}

}else{

InputStreamin=null;OutputStreamout=null;try{

in=entry.getInputStream();

out=newFileOutputStream(dest);intbufferSize=1024;

byte[]data=newbyte[bufferSize];intnbRead;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值