提交 afc923ea 编写于 作者: tangyaolong's avatar tangyaolong

添加注释

上级 d65c5610
...@@ -74,7 +74,7 @@ public class FileHelper { ...@@ -74,7 +74,7 @@ public class FileHelper {
public static void unTarGz(File zipFile, String descDir,boolean exp) throws IOException{ public static void unTarGz(File zipFile, String descDir,boolean exp) throws IOException{
TarInputStream tarIn = null; TarInputStream tarIn = null;
try{ try{
log.info("***************************开始解压缩tar.gz格式文件***************************"); log.debug("***************************开始解压缩tar.gz格式文件***************************");
tarIn = new TarInputStream(new GZIPInputStream( tarIn = new TarInputStream(new GZIPInputStream(
new BufferedInputStream(new FileInputStream(zipFile))), new BufferedInputStream(new FileInputStream(zipFile))),
1024 * 2); 1024 * 2);
...@@ -93,6 +93,7 @@ public class FileHelper { ...@@ -93,6 +93,7 @@ public class FileHelper {
fileName = exp ? entry.getName().replace(root,"") : entry.getName(); fileName = exp ? entry.getName().replace(root,"") : entry.getName();
//是文件 //是文件
File tmpFile = new File(descDir + "/" + fileName); File tmpFile = new File(descDir + "/" + fileName);
log.debug("正在输出文件:{}",tmpFile.getPath());
//创建输出目录 //创建输出目录
createDirectory(tmpFile.getParent() + "/",null); createDirectory(tmpFile.getParent() + "/",null);
OutputStream out = null; OutputStream out = null;
...@@ -123,7 +124,7 @@ public class FileHelper { ...@@ -123,7 +124,7 @@ public class FileHelper {
}catch(IOException ex){ }catch(IOException ex){
throw new IOException("关闭tarFile出现异常",ex); throw new IOException("关闭tarFile出现异常",ex);
} }
log.info("***************************解压缩tar.gz格式文件结束***************************"); log.debug("***************************解压缩tar.gz格式文件结束***************************");
} }
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册