|
|
|
@ -8,8 +8,7 @@ import java.lang.reflect.Type;
|
|
|
|
|
import java.net.MalformedURLException; |
|
|
|
|
import java.net.URL; |
|
|
|
|
import java.net.URLConnection; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.TimerTask; |
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.zip.ZipEntry; |
|
|
|
|
import java.util.zip.ZipOutputStream; |
|
|
|
|
|
|
|
|
@ -25,13 +24,55 @@ public class FileUtil extends TimerTask {
|
|
|
|
|
|
|
|
|
|
private List<String> LocalTempFiles; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//loadhost
|
|
|
|
|
// private static String savePath = "D:/"+"reservationZip/";
|
|
|
|
|
|
|
|
|
|
private static String zipPavePath = CommonConstant.SYSTEMFILEPATH+"reservationZip/"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public FileUtil(List<String> list) { |
|
|
|
|
this.LocalTempFiles = list; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static File checkZipFile(String reservationCode) { |
|
|
|
|
String savePath = CommonConstant.SYSTEMFILEPATH+"reservationZip/"+ reservationCode; |
|
|
|
|
return new File(savePath+".zip"); |
|
|
|
|
return new File(zipPavePath+".zip"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 对指定的文件进行压缩,并返回文件名称 |
|
|
|
|
* @param reservationCodes |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
public static String reservationPictureFileToZip(String reservationCodes) { |
|
|
|
|
String currentTimeMillis = System.currentTimeMillis()+".zip"; |
|
|
|
|
try{ |
|
|
|
|
//zip文件生成位置
|
|
|
|
|
File zipFile = new File(zipPavePath+"/"+ currentTimeMillis); |
|
|
|
|
FileOutputStream fos = new FileOutputStream(zipFile); |
|
|
|
|
ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(fos)); |
|
|
|
|
for (String s : reservationCodes.split(",")) { |
|
|
|
|
File file = new File(zipPavePath+s); |
|
|
|
|
if (!Objects.isNull(file)){ |
|
|
|
|
fileToZip(zos, file, ""); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
zos.close(); |
|
|
|
|
fos.close(); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
throw new RuntimeException(e); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return currentTimeMillis; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static File getZipFile(String fileName) { |
|
|
|
|
|
|
|
|
|
return new File(zipPavePath +fileName); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -56,8 +97,7 @@ public class FileUtil extends TimerTask {
|
|
|
|
|
*/ |
|
|
|
|
public static void handleSignPictureZip(List<String> urls, String type, String code, String consignee) { |
|
|
|
|
//将图片下载至本地中
|
|
|
|
|
String savePath = CommonConstant.SYSTEMFILEPATH+"reservationZip/"; |
|
|
|
|
String imgPath = savePath+code+"/"; |
|
|
|
|
String imgPath = zipPavePath+code+"/"; |
|
|
|
|
|
|
|
|
|
// 打开连接
|
|
|
|
|
//设置请求超时为20s
|
|
|
|
@ -90,48 +130,18 @@ public class FileUtil extends TimerTask {
|
|
|
|
|
//下载远程地址图片
|
|
|
|
|
download(imgUrl, imgPath, str); |
|
|
|
|
//将该客户的签收图片进行ZIP压缩
|
|
|
|
|
|
|
|
|
|
//读取该文件路径下的文件夹
|
|
|
|
|
File file = new File(savePath); |
|
|
|
|
fileToZip(file); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
throw new RuntimeException(e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* sourceFile一定要是文件夹 |
|
|
|
|
* 默认会在同目录下生成zip文件 |
|
|
|
|
* |
|
|
|
|
* @param sourceFile |
|
|
|
|
* @throws Exception |
|
|
|
|
*/ |
|
|
|
|
public static void fileToZip(File sourceFile) throws Exception { |
|
|
|
|
|
|
|
|
|
if (!sourceFile.exists()) { |
|
|
|
|
throw new RuntimeException("不存在"); |
|
|
|
|
} |
|
|
|
|
if (!sourceFile.isDirectory()) { |
|
|
|
|
throw new RuntimeException("不是文件夹"); |
|
|
|
|
} |
|
|
|
|
//zip文件生成位置
|
|
|
|
|
File zipFile = new File(sourceFile.getAbsolutePath() + ".zip"); |
|
|
|
|
FileOutputStream fos = new FileOutputStream(zipFile); |
|
|
|
|
ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(fos)); |
|
|
|
|
fileToZip(zos, sourceFile, ""); |
|
|
|
|
zos.close(); |
|
|
|
|
fos.close(); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private static void fileToZip(ZipOutputStream zos, File sourceFile, String path) throws Exception { |
|
|
|
|
|
|
|
|
|
System.out.println(sourceFile.getAbsolutePath()); |
|
|
|
|
|
|
|
|
|
private static void fileToZip(ZipOutputStream zos, File sourceFile, String path) throws Exception { |
|
|
|
|
//如果是文件夹只创建zip实体即可,如果是文件,创建zip实体后还要读取文件内容并写入
|
|
|
|
|
if (sourceFile.isDirectory()) { |
|
|
|
|
path = path + sourceFile.getName() + "/"; |
|
|
|
|