Commit fb48d268 authored by 赵啸非's avatar 赵啸非

修改登录鉴权时间

parent 8c551ad0
......@@ -239,14 +239,6 @@ public class ZipUtils {
int count;
byte [] data = new byte[BUFFER_SIZE];
new File(destDir + "/" + entry.getName())
File parent = curfile.getParentFile();
log.info("***文件保存的路径" + curfile.getAbsolutePath());
if (!parent.exists()) {
parent.mkdirs();
}
FileOutputStream fos = new FileOutputStream(destDir + "/" + entry.getName(), false);
try (BufferedOutputStream dest = new BufferedOutputStream(fos, BUFFER_SIZE)) {
while ((count = tarIn.read(data, 0, BUFFER_SIZE)) != -1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment