openkm zip 导入乱码问题解决

本文介绍了使用TrueZIP库中的DefaultArchiveDetector和CheckedZip32Driver进行文件解压缩的方法。通过具体的Java代码示例展示了如何读取zip文件并将其内容复制到指定的目标目录。
com.openkm.servlet.frontend.FileUploadServlet

类中找到 importZip方法

// Unzip files
ArchiveDetector detector = new DefaultArchiveDetector(ArchiveDetector.ALL, new Object[]{"zip", new CheckedZip32Driver("GBK")});
File fileTmpIn = new File(tmpIn,detector);
fileTmpIn.archiveCopyAllTo(tmpOut);
File.umount();

增加红色的部分

 

其实系统中使用的是TrueZIP,使用方法如下
解压缩代码如下:

ArchiveDetector detector = new DefaultArchiveDetector(ArchiveDetector.ALL,
        new Object[] { "zip", new CheckedZip32Driver("GBK") } );
File zipFile = new File("zipFile", detector);
File dst = new File("dst");
// 解压缩
zipFile.copyAllTo(dst);

代码十分简洁,注意这个File是

de.schlichtherle.io.File

 

转载于:https://my.oschina.net/u/564758/blog/827318

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值