Browse Source

Merge branch 'dev' into pre-production

newStockUp
pref_mail@163.com 1 year ago
parent
commit
4f0297705b
  1. 5
      blade-biz-common/src/main/java/org/springblade/common/utils/FileUtil.java

5
blade-biz-common/src/main/java/org/springblade/common/utils/FileUtil.java

@ -30,8 +30,7 @@ public class FileUtil extends TimerTask {
} }
public static File checkZipFile(String reservationCode) { public static File checkZipFile(String reservationCode) {
String savePath = "D:/Test" +"/"+ reservationCode; String savePath = CommonConstant.SYSTEMFILEPATH+"reservationZip/"+ reservationCode;
return new File(savePath+".zip"); return new File(savePath+".zip");
} }
@ -169,7 +168,7 @@ public class FileUtil extends TimerTask {
} }
//jdk 1.7 新特性自动关闭 //jdk 1.7 新特性自动关闭
InputStream in = con.getInputStream(); InputStream in = con.getInputStream();
OutputStream out = new FileOutputStream(sf.getPath() + "\\" + str); OutputStream out = new FileOutputStream(sf.getPath() + "/" + str);
//创建缓冲区 //创建缓冲区
byte[] buff = new byte[1024]; byte[] buff = new byte[1024];
int n; int n;

Loading…
Cancel
Save