带秘钥的文件解压缩
Posted 零度的冰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带秘钥的文件解压缩相关的知识,希望对你有一定的参考价值。
我这次运用的有秘钥的解密,用了ZIP4J;
pom文件中这样引用:
<dependency> <groupId>net.lingala.zip4j</groupId> <artifactId>zip4j</artifactId> <version>1.3.1</version> </dependency>
java代码如下:
/** * 使用给定密码解压指定的ZIP压缩文件到指定目录 * <p> * 如果指定目录不存在,可以自动创建,不合法的路径将导致异常被抛出 * * @param zip * 指定的ZIP压缩文件 * @param dest * 解压目录 * @param passwd * ZIP文件的密码 * @return 解压后文件数组 * @throws ZipException * 压缩文件有损坏或者解压缩失败抛出 */ public static File[] unzip(File zipFile, String dest, String passwd) throws ZipException { ZipFile zFile = new ZipFile(zipFile); zFile.setFileNameCharset("UTF-8"); if (!zFile.isValidZipFile()) { throw new ZipException("压缩文件不合法,可能被损坏."); } File destDir = new File(dest); if (destDir.isDirectory() && !destDir.exists()) { destDir.mkdir(); } if (zFile.isEncrypted()) { zFile.setPassword(passwd.toCharArray()); } zFile.extractAll(dest); List<FileHeader> headerList = zFile.getFileHeaders(); List<File> extractedFileList = new ArrayList<File>(); for (FileHeader fileHeader : headerList) { if (!fileHeader.isDirectory()) { extractedFileList.add(new File(destDir, fileHeader.getFileName())); } } File[] extractedFiles = new File[extractedFileList.size()]; extractedFileList.toArray(extractedFiles); return extractedFiles; }
很方便,我参考的http://blog.csdn.net/silversupersoul/article/details/44221607这篇文章,详细的点此连接
以上是关于带秘钥的文件解压缩的主要内容,如果未能解决你的问题,请参考以下文章
Https:证书生成 .p12 .keyStore 和 .truststore文件理解