/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cast.c514.transfer.util;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.Charset;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
/**
*
* @author cuizhf
*/
public class MyZipUtil {
private MyZipUtil() {
}
/**
* 执行压缩文件的解压,并自动生成文件的操作
*
* @throws java.io.IOException
* @see http://blog.csdn.net/isea533/article/details/7995472
* @param in
* @param outputDirectory
*/
public static void unZip(InputStream in, String outputDirectory) throws IOException {
// 通过Charset.forName("GBK")解决乱码问题
try (ZipInputStream zins = new ZipInputStream(in, Charset.forName("GBK"))) {
ZipEntry ze;
byte[] ch = new byte[256];
while ((ze = zins.getNextEntry()) != null) {
File zfile = new File(outputDirectory + File.separator + ze.getName());
File fpath = new File(zfile.getParentFile().getPath());
if (ze.isDirectory()) {
if (!zfile.exists()) {
zfile.mkdirs();
}
zins.closeEntry();
} else {
if (!fpath.exists()) {
fpath.mkdirs();
}
try (FileOutputStream fouts = new FileOutputStream(zfile)) {
int i;
while ((i = zins.read(ch)) != -1) {
fouts.write(ch, 0, i);
}
zins.closeEntry();
}
}
}
}
}
}
傲轩游戏网
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
2016-09-21 Substance 6 设置 watermark(水印)
2012-09-21 JPA的一个blog
2012-09-21 http://vivin.net/2010/01/30/generic-n-ary-tree-in-java/
2011-09-21 JTextPane/DefaultStyledDocument的序列化的相关问题
2011-09-21 JTextPane自动滚动到末尾
2011-09-21 征途2淮阳寻宝源代码(无说明,自己备用:)
2011-09-21 JxtaBiDiPipe的RetryingOutputPipeConnect中的周期性任务耗费时间过长///Long Task Detector warning