|
|
|
@ -0,0 +1,800 @@
|
|
|
|
|
package com.bs.web.controller.utils;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.codec.Base64;
|
|
|
|
|
import cn.hutool.core.io.IoUtil;
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import cn.hutool.poi.excel.BigExcelWriter;
|
|
|
|
|
import cn.hutool.poi.excel.ExcelUtil;
|
|
|
|
|
import com.bs.common.constant.Constants;
|
|
|
|
|
import com.bs.common.exception.ServiceException;
|
|
|
|
|
import com.bs.ct.utils.UUIDUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.apache.poi.util.IOUtils;
|
|
|
|
|
import org.apache.poi.xssf.streaming.SXSSFSheet;
|
|
|
|
|
import org.springframework.core.io.ClassPathResource;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import javax.servlet.ServletOutputStream;
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
import java.awt.image.BufferedImage;
|
|
|
|
|
import java.io.*;
|
|
|
|
|
import java.net.URLEncoder;
|
|
|
|
|
import java.security.MessageDigest;
|
|
|
|
|
import java.security.SecureRandom;
|
|
|
|
|
import java.text.DecimalFormat;
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* File工具类,扩展 hutool 工具包
|
|
|
|
|
*/
|
|
|
|
|
@Slf4j
|
|
|
|
|
public class FileUtil extends cn.hutool.core.io.FileUtil {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 定义GB的计算常量
|
|
|
|
|
*/
|
|
|
|
|
private static final int GB = 1024 * 1024 * 1024;
|
|
|
|
|
/**
|
|
|
|
|
* 定义MB的计算常量
|
|
|
|
|
*/
|
|
|
|
|
private static final int MB = 1024 * 1024;
|
|
|
|
|
/**
|
|
|
|
|
* 定义KB的计算常量
|
|
|
|
|
*/
|
|
|
|
|
private static final int KB = 1024;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 格式化小数
|
|
|
|
|
*/
|
|
|
|
|
private static final DecimalFormat DF = new DecimalFormat("0.00");
|
|
|
|
|
/**
|
|
|
|
|
* 系统临时目录
|
|
|
|
|
* <br>
|
|
|
|
|
* windows 包含路径分割符,但Linux 不包含,
|
|
|
|
|
* 在windows \\==\ 前提下,
|
|
|
|
|
* 为安全起见 同意拼装 路径分割符,
|
|
|
|
|
* <pre>
|
|
|
|
|
* java.io.tmpdir
|
|
|
|
|
* windows : C:\Users/xxx\AppData\Local\Temp\
|
|
|
|
|
* linux: /temp
|
|
|
|
|
* </pre>
|
|
|
|
|
*/
|
|
|
|
|
public static final String SYS_TEM_DIR = System.getProperty("java.io.tmpdir") + File.separator;
|
|
|
|
|
|
|
|
|
|
private static final int FILE_READ_BTYE = 1024;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* MultipartFile转File
|
|
|
|
|
*/
|
|
|
|
|
public static File toFile(MultipartFile multipartFile) {
|
|
|
|
|
// 获取文件名
|
|
|
|
|
String fileName = multipartFile.getOriginalFilename();
|
|
|
|
|
// 获取文件后缀
|
|
|
|
|
String prefix = "." + getExtensionName(fileName);
|
|
|
|
|
File file = null;
|
|
|
|
|
try {
|
|
|
|
|
// 用uuid作为文件名,防止生成的临时文件重复
|
|
|
|
|
file = File.createTempFile(IdUtil.simpleUUID(), prefix);
|
|
|
|
|
// MultipartFile to File
|
|
|
|
|
multipartFile.transferTo(file);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取文件扩展名,不带 .
|
|
|
|
|
*/
|
|
|
|
|
public static String getExtensionName(String filename) {
|
|
|
|
|
if ((filename != null) && (filename.length() > 0)) {
|
|
|
|
|
int dot = filename.lastIndexOf('.');
|
|
|
|
|
if ((dot > -1) && (dot < (filename.length() - 1))) {
|
|
|
|
|
return filename.substring(dot + 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return filename;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String getExtensionNameBase64(String filename) {
|
|
|
|
|
if (filename.contains("data:image/png;base64")) {
|
|
|
|
|
return "png";
|
|
|
|
|
}else if(filename.contains("data:image/jpg;base64")){
|
|
|
|
|
return "jpg";
|
|
|
|
|
}else if(filename.contains("data:image/jpeg;base64")){
|
|
|
|
|
return "jpeg";
|
|
|
|
|
}
|
|
|
|
|
return "bmp";
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* Java文件操作 获取不带扩展名的文件名
|
|
|
|
|
*/
|
|
|
|
|
public static String getFileNameNoEx(String filename) {
|
|
|
|
|
if ((filename != null) && (filename.length() > 0)) {
|
|
|
|
|
int dot = filename.lastIndexOf('.');
|
|
|
|
|
if ((dot > -1) && (dot < (filename.length()))) {
|
|
|
|
|
return filename.substring(0, dot);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return filename;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 文件大小转换
|
|
|
|
|
*/
|
|
|
|
|
public static String getSize(long size) {
|
|
|
|
|
String resultSize;
|
|
|
|
|
if (size / GB >= 1) {
|
|
|
|
|
//如果当前Byte的值大于等于1GB
|
|
|
|
|
resultSize = DF.format(size / (float) GB) + "GB ";
|
|
|
|
|
} else if (size / MB >= 1) {
|
|
|
|
|
//如果当前Byte的值大于等于1MB
|
|
|
|
|
resultSize = DF.format(size / (float) MB) + "MB ";
|
|
|
|
|
} else if (size / KB >= 1) {
|
|
|
|
|
//如果当前Byte的值大于等于1KB
|
|
|
|
|
resultSize = DF.format(size / (float) KB) + "KB ";
|
|
|
|
|
} else {
|
|
|
|
|
resultSize = size + "B ";
|
|
|
|
|
}
|
|
|
|
|
return resultSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 将文件名解析成文件的上传路径
|
|
|
|
|
*/
|
|
|
|
|
public static File upload(MultipartFile file, String filePath) {
|
|
|
|
|
//String name = getFileNameNoEx(file.getOriginalFilename());
|
|
|
|
|
String suffix = getExtensionName(file.getOriginalFilename());
|
|
|
|
|
StringBuffer nowStr = fileRename();
|
|
|
|
|
try {
|
|
|
|
|
String fileName = nowStr + "." + suffix;
|
|
|
|
|
String path = filePath + fileName;
|
|
|
|
|
// getCanonicalFile 可解析正确各种路径
|
|
|
|
|
File dest = new File(path).getCanonicalFile();
|
|
|
|
|
// 检测是否存在目录
|
|
|
|
|
if (!dest.getParentFile().exists()) {
|
|
|
|
|
dest.getParentFile().mkdirs();
|
|
|
|
|
}
|
|
|
|
|
// 文件写入
|
|
|
|
|
file.transferTo(dest);
|
|
|
|
|
return dest;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String fileToBase64(File file) throws Exception {
|
|
|
|
|
FileInputStream inputFile = new FileInputStream(file);
|
|
|
|
|
String base64;
|
|
|
|
|
byte[] buffer = new byte[(int) file.length()];
|
|
|
|
|
inputFile.read(buffer);
|
|
|
|
|
inputFile.close();
|
|
|
|
|
base64 = Base64.encode(buffer);
|
|
|
|
|
return base64.replaceAll("[\\s*\t\n\r]", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static String getFileType(String type) {
|
|
|
|
|
String documents = "txt doc pdf ppt pps xlsx xls docx";
|
|
|
|
|
String music = "mp3 wav wma mpa ram ra aac aif m4a";
|
|
|
|
|
String video = "avi mpg mpe mpeg asf wmv mov qt rm mp4 flv m4v webm ogv ogg";
|
|
|
|
|
String image = "bmp dib pcp dif wmf gif jpg tif eps psd cdr iff tga pcd mpt png jpeg";
|
|
|
|
|
if (image.contains(type)) {
|
|
|
|
|
return "pic";
|
|
|
|
|
} else if (documents.contains(type)) {
|
|
|
|
|
return "txt";
|
|
|
|
|
} else if (music.contains(type)) {
|
|
|
|
|
return "music";
|
|
|
|
|
} else if (video.contains(type)) {
|
|
|
|
|
return "vedio";
|
|
|
|
|
} else {
|
|
|
|
|
return "other";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void checkSize(long maxSize, long size) {
|
|
|
|
|
// 1M
|
|
|
|
|
int len = 1024 * 1024;
|
|
|
|
|
if (size > (maxSize * len)) {
|
|
|
|
|
throw new ServiceException("文件超出规定大小");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 判断两个文件是否相同
|
|
|
|
|
*/
|
|
|
|
|
public static boolean check(File file1, File file2) {
|
|
|
|
|
String img1Md5 = getMd5(file1);
|
|
|
|
|
String img2Md5 = getMd5(file2);
|
|
|
|
|
return img1Md5.equals(img2Md5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 判断两个文件是否相同
|
|
|
|
|
*/
|
|
|
|
|
public static boolean check(String file1Md5, String file2Md5) {
|
|
|
|
|
return file1Md5.equals(file2Md5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static byte[] getByte(File file) {
|
|
|
|
|
// 得到文件长度
|
|
|
|
|
byte[] b = new byte[(int) file.length()];
|
|
|
|
|
try {
|
|
|
|
|
InputStream in = new FileInputStream(file);
|
|
|
|
|
try {
|
|
|
|
|
in.read(b);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static String getMd5(byte[] bytes) {
|
|
|
|
|
// 16进制字符
|
|
|
|
|
char[] hexDigits = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
|
|
|
|
|
try {
|
|
|
|
|
MessageDigest mdTemp = MessageDigest.getInstance("MD5");
|
|
|
|
|
mdTemp.update(bytes);
|
|
|
|
|
byte[] md = mdTemp.digest();
|
|
|
|
|
int j = md.length;
|
|
|
|
|
char[] str = new char[j * 2];
|
|
|
|
|
int k = 0;
|
|
|
|
|
// 移位 输出字符串
|
|
|
|
|
for (byte byte0 : md) {
|
|
|
|
|
str[k++] = hexDigits[byte0 >>> 4 & 0xf];
|
|
|
|
|
str[k++] = hexDigits[byte0 & 0xf];
|
|
|
|
|
}
|
|
|
|
|
return new String(str);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 下载文件
|
|
|
|
|
*
|
|
|
|
|
* @param request /
|
|
|
|
|
* @param response /
|
|
|
|
|
* @param file /
|
|
|
|
|
*/
|
|
|
|
|
public static void downloadFile(HttpServletRequest request, HttpServletResponse response, File file, boolean deleteOnExit) {
|
|
|
|
|
response.setCharacterEncoding(request.getCharacterEncoding());
|
|
|
|
|
response.setContentType("application/octet-stream");
|
|
|
|
|
FileInputStream fis = null;
|
|
|
|
|
try {
|
|
|
|
|
fis = new FileInputStream(file);
|
|
|
|
|
response.setHeader("Content-Disposition", "attachment; filename=" + file.getName());
|
|
|
|
|
IOUtils.copy(fis, response.getOutputStream());
|
|
|
|
|
response.flushBuffer();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
} finally {
|
|
|
|
|
if (fis != null) {
|
|
|
|
|
try {
|
|
|
|
|
fis.close();
|
|
|
|
|
if (deleteOnExit) {
|
|
|
|
|
file.deleteOnExit();
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String getMd5(File file) {
|
|
|
|
|
return getMd5(getByte(file));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 读取json文件,返回json串
|
|
|
|
|
*
|
|
|
|
|
* @param fileName
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static String readJsonFile(String fileName) {
|
|
|
|
|
String jsonStr = "";
|
|
|
|
|
try {
|
|
|
|
|
File jsonFile = new File(fileName);
|
|
|
|
|
FileReader fileReader = new FileReader(jsonFile);
|
|
|
|
|
|
|
|
|
|
Reader reader = new InputStreamReader(new FileInputStream(jsonFile), "utf-8");
|
|
|
|
|
int ch = 0;
|
|
|
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
|
while ((ch = reader.read()) != -1) {
|
|
|
|
|
sb.append((char) ch);
|
|
|
|
|
}
|
|
|
|
|
fileReader.close();
|
|
|
|
|
reader.close();
|
|
|
|
|
jsonStr = sb.toString();
|
|
|
|
|
return jsonStr;
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static BufferedImage inputImage(MultipartFile file) {
|
|
|
|
|
BufferedImage srcImage = null;
|
|
|
|
|
try {
|
|
|
|
|
FileInputStream in = (FileInputStream) file.getInputStream();
|
|
|
|
|
srcImage = javax.imageio.ImageIO.read(in);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
System.out.println("读取图片文件出错!" + e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
return srcImage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 自动调节精度(经验数值)
|
|
|
|
|
*
|
|
|
|
|
* @param size 源图片大小
|
|
|
|
|
* @return 图片压缩质量比
|
|
|
|
|
*/
|
|
|
|
|
public static float getAccuracy(long size) {
|
|
|
|
|
float accuracy;
|
|
|
|
|
if (size < 400) {
|
|
|
|
|
accuracy = 0.85f;
|
|
|
|
|
} else if (size < 900) {
|
|
|
|
|
accuracy = 0.75f;
|
|
|
|
|
} else if (size < 2047) {
|
|
|
|
|
accuracy = 0.6f;
|
|
|
|
|
} else if (size < 3275) {
|
|
|
|
|
accuracy = 0.44f;
|
|
|
|
|
} else {
|
|
|
|
|
accuracy = 0.4f;
|
|
|
|
|
}
|
|
|
|
|
return accuracy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 上传文件重命名
|
|
|
|
|
*
|
|
|
|
|
* @return 新的文件名
|
|
|
|
|
*/
|
|
|
|
|
public static StringBuffer fileRename() {
|
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS");
|
|
|
|
|
String time = sdf.format(new Date());
|
|
|
|
|
StringBuffer buf = new StringBuffer(time);
|
|
|
|
|
SecureRandom r = new SecureRandom();
|
|
|
|
|
//循环取得三个不大于10的随机整数
|
|
|
|
|
for (int x = 0; x < 3; x++) {
|
|
|
|
|
buf.append(r.nextInt(10));
|
|
|
|
|
}
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 对中文字符进行UTF-8编码
|
|
|
|
|
*
|
|
|
|
|
* @param source 要转义的字符串
|
|
|
|
|
* @return
|
|
|
|
|
* @throws UnsupportedEncodingException
|
|
|
|
|
*/
|
|
|
|
|
public static String transformStyle(String source) throws UnsupportedEncodingException {
|
|
|
|
|
char[] arr = source.toCharArray();
|
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
for (int i = 0; i < arr.length; i++) {
|
|
|
|
|
char temp = arr[i];
|
|
|
|
|
if (isChinese(temp)) {
|
|
|
|
|
sb.append(URLEncoder.encode("" + temp, Constants.UTF8));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
sb.append(arr[i]);
|
|
|
|
|
}
|
|
|
|
|
return sb.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 判断是不是中文字符
|
|
|
|
|
*
|
|
|
|
|
* @param c
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static boolean isChinese(char c) {
|
|
|
|
|
|
|
|
|
|
Character.UnicodeBlock ub = Character.UnicodeBlock.of(c);
|
|
|
|
|
|
|
|
|
|
if (ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS
|
|
|
|
|
|
|
|
|
|
|| ub == Character.UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS
|
|
|
|
|
|
|
|
|
|
|| ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A
|
|
|
|
|
|
|
|
|
|
|| ub == Character.UnicodeBlock.GENERAL_PUNCTUATION
|
|
|
|
|
|
|
|
|
|
|| ub == Character.UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION
|
|
|
|
|
|
|
|
|
|
|| ub == Character.UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS) {
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 上传文件重命名Mos系统
|
|
|
|
|
*
|
|
|
|
|
* @return 新的文件名
|
|
|
|
|
*/
|
|
|
|
|
public static String fileRenameMos(String prefix, String suffix) {
|
|
|
|
|
// 生成唯一的文件名[带前缀以及后缀]
|
|
|
|
|
String fileName = (prefix == null ? ""
|
|
|
|
|
: prefix.trim()) + UUIDUtils.generatorUUID() + (suffix == null ? ""
|
|
|
|
|
: suffix.trim());
|
|
|
|
|
return fileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 上传文件Mos系统
|
|
|
|
|
*/
|
|
|
|
|
public static File uploadMos(MultipartFile file, String path) {
|
|
|
|
|
try {
|
|
|
|
|
// getCanonicalFile 可解析正确各种路径
|
|
|
|
|
File dest = new File(path).getCanonicalFile();
|
|
|
|
|
// 检测是否存在目录
|
|
|
|
|
if (!dest.getParentFile().exists()) {
|
|
|
|
|
dest.getParentFile().mkdirs();
|
|
|
|
|
}
|
|
|
|
|
// 文件写入
|
|
|
|
|
file.transferTo(dest);
|
|
|
|
|
return dest;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static File uploadMosBase64(String imageStr, String path) {
|
|
|
|
|
try {
|
|
|
|
|
// getCanonicalFile 可解析正确各种路径
|
|
|
|
|
File dest = new File(path).getCanonicalFile();
|
|
|
|
|
// 检测是否存在目录
|
|
|
|
|
if (!dest.getParentFile().exists()) {
|
|
|
|
|
dest.getParentFile().mkdirs();
|
|
|
|
|
}
|
|
|
|
|
byte[] bytes=Base64.decode(imageStr); //imageStr.getBytes();
|
|
|
|
|
FileOutputStream fos = new FileOutputStream(dest);
|
|
|
|
|
try{
|
|
|
|
|
// 文件写入
|
|
|
|
|
fos.write(bytes,0,bytes.length);
|
|
|
|
|
fos.flush();
|
|
|
|
|
}catch (IOException e){
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}finally {
|
|
|
|
|
fos.close();
|
|
|
|
|
}
|
|
|
|
|
return dest;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 读取文件,返回文件字符串.
|
|
|
|
|
*
|
|
|
|
|
* @param in 文件输入流
|
|
|
|
|
* @param encoding 文件编码
|
|
|
|
|
* @return String
|
|
|
|
|
*/
|
|
|
|
|
public static String readFile(InputStream in, String encoding) {
|
|
|
|
|
if (in == null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
|
InputStreamReader reader = null;
|
|
|
|
|
try {
|
|
|
|
|
reader = new InputStreamReader(in, encoding);
|
|
|
|
|
int tmp = -1;
|
|
|
|
|
char temp;
|
|
|
|
|
while ((tmp = reader.read()) != -1) {
|
|
|
|
|
temp = (char) tmp;
|
|
|
|
|
sb.append(temp);
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
} finally {
|
|
|
|
|
if (reader != null) {
|
|
|
|
|
try {
|
|
|
|
|
reader.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (in != null) {
|
|
|
|
|
try {
|
|
|
|
|
in.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sb.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 将inputStream写入文件并关闭inputStream.
|
|
|
|
|
*
|
|
|
|
|
* @param is 文件输入流
|
|
|
|
|
* @param filePath 文件路径
|
|
|
|
|
* @param append true为追加,false为覆盖
|
|
|
|
|
* @return 是否成功
|
|
|
|
|
*/
|
|
|
|
|
public static boolean writeFile(InputStream is, String filePath,
|
|
|
|
|
boolean append) {
|
|
|
|
|
FileOutputStream fos = null;
|
|
|
|
|
try {
|
|
|
|
|
if (makeDir(filePath) && is != null) {
|
|
|
|
|
fos = new FileOutputStream(filePath, append);
|
|
|
|
|
byte[] buffer = new byte[FILE_READ_BTYE * FILE_READ_BTYE];
|
|
|
|
|
// int bytesum = 0;
|
|
|
|
|
int byteread = 0;
|
|
|
|
|
while ((byteread = is.read(buffer)) != -1) {
|
|
|
|
|
// bytesum+=byteread;
|
|
|
|
|
fos.write(buffer, 0, byteread);
|
|
|
|
|
fos.flush();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
} finally {
|
|
|
|
|
if (fos != null) {
|
|
|
|
|
try {
|
|
|
|
|
fos.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (is != null) {
|
|
|
|
|
try {
|
|
|
|
|
is.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 将字符串写入到文件.
|
|
|
|
|
*
|
|
|
|
|
* @param str 字符串
|
|
|
|
|
* @param filePath 文件路径
|
|
|
|
|
* @param encoding 编码
|
|
|
|
|
* @param append 是否累加
|
|
|
|
|
* @return 是否成功
|
|
|
|
|
*/
|
|
|
|
|
public static boolean writeFile(String str, String filePath,
|
|
|
|
|
String encoding, boolean append) {
|
|
|
|
|
FileOutputStream fos = null;
|
|
|
|
|
Writer out = null;
|
|
|
|
|
boolean isSucc = false;
|
|
|
|
|
try {
|
|
|
|
|
if (makeDir(filePath)) {
|
|
|
|
|
fos = new FileOutputStream(new File(filePath), append);
|
|
|
|
|
out = new OutputStreamWriter(fos, encoding);
|
|
|
|
|
out.write(str);
|
|
|
|
|
|
|
|
|
|
out.flush();
|
|
|
|
|
out.close();
|
|
|
|
|
|
|
|
|
|
fos.flush();
|
|
|
|
|
fos.close();
|
|
|
|
|
} else {
|
|
|
|
|
isSucc = false;
|
|
|
|
|
}
|
|
|
|
|
isSucc = true;
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
isSucc = false;
|
|
|
|
|
} finally {
|
|
|
|
|
if (fos != null) {
|
|
|
|
|
try {
|
|
|
|
|
fos.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (out != null) {
|
|
|
|
|
try {
|
|
|
|
|
out.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return isSucc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据文件创建目录.
|
|
|
|
|
*
|
|
|
|
|
* @param file 文件
|
|
|
|
|
* @return 是否成功
|
|
|
|
|
*/
|
|
|
|
|
public static boolean makeDir(File file) {
|
|
|
|
|
if (!file.exists()) {
|
|
|
|
|
makeDir(file.getAbsolutePath());
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据文件名创建目录
|
|
|
|
|
*
|
|
|
|
|
* @param fileName
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static boolean makeDir(String fileName) {
|
|
|
|
|
int index = 0;
|
|
|
|
|
int index1 = fileName.lastIndexOf("/");
|
|
|
|
|
int index2 = fileName.lastIndexOf("\\");
|
|
|
|
|
if (index1 > index2) {
|
|
|
|
|
index = index1;
|
|
|
|
|
} else {
|
|
|
|
|
index = index2;
|
|
|
|
|
}
|
|
|
|
|
fileName = fileName.substring(0, index);
|
|
|
|
|
File file = new File(fileName);
|
|
|
|
|
file.setWritable(true, false);
|
|
|
|
|
if (!file.exists()) {
|
|
|
|
|
if (!file.mkdirs()) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除单个文件 。
|
|
|
|
|
*
|
|
|
|
|
* @param sPath 被删除文件的文件名
|
|
|
|
|
* @return 单个文件删除成功返回true,否则返回false
|
|
|
|
|
*/
|
|
|
|
|
public static boolean deleteFile(String sPath) {
|
|
|
|
|
Boolean flag = false;
|
|
|
|
|
File file = new File(sPath);
|
|
|
|
|
// 路径为文件且不为空则进行删除
|
|
|
|
|
if (file.isFile() && file.exists()) {
|
|
|
|
|
file.delete();
|
|
|
|
|
flag = true;
|
|
|
|
|
}
|
|
|
|
|
return flag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除单个文件 。
|
|
|
|
|
*
|
|
|
|
|
* @param file 被删除文件
|
|
|
|
|
* @return 单个文件删除成功返回true,否则返回false
|
|
|
|
|
*/
|
|
|
|
|
public static boolean deleteFile(File file) {
|
|
|
|
|
Boolean flag = false;
|
|
|
|
|
// 路径为文件且不为空则进行删除
|
|
|
|
|
if (file.isFile() && file.exists()) {
|
|
|
|
|
file.delete();
|
|
|
|
|
flag = true;
|
|
|
|
|
}
|
|
|
|
|
return flag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除文件夹。
|
|
|
|
|
*
|
|
|
|
|
* @param sPath 文件夹路径
|
|
|
|
|
* @param flags true删除文件夹,false只删除文件夹下的文件
|
|
|
|
|
* @return 是否删除成功
|
|
|
|
|
*/
|
|
|
|
|
public static boolean deleteDirectory(String sPath, Boolean flags) {
|
|
|
|
|
// 如果sPath不以文件分隔符结尾,自动添加文件分隔符
|
|
|
|
|
if (!sPath.endsWith(File.separator)) {
|
|
|
|
|
sPath = sPath + File.separator;
|
|
|
|
|
}
|
|
|
|
|
File dirFile = new File(sPath);
|
|
|
|
|
// 如果dir对应的文件不存在,或者不是一个目录,则退出
|
|
|
|
|
if (!dirFile.exists() || !dirFile.isDirectory()) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
Boolean flag = true;
|
|
|
|
|
// 删除文件夹下的所有文件(包括子目录)
|
|
|
|
|
File[] files = dirFile.listFiles();
|
|
|
|
|
for (int i = 0; i < files.length; i++) {
|
|
|
|
|
// 删除子文件
|
|
|
|
|
if (files[i].isFile()) {
|
|
|
|
|
flag = deleteFile(files[i].getAbsolutePath());
|
|
|
|
|
if (!flag) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// 删除子目录
|
|
|
|
|
flag = deleteDirectory(files[i].getAbsolutePath(), true);
|
|
|
|
|
if (!flag) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!flag) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (flags) {
|
|
|
|
|
// 删除当前目录
|
|
|
|
|
return dirFile.delete();
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* inputStream 转 File
|
|
|
|
|
*/
|
|
|
|
|
static File inputStreamToFile(InputStream ins, String name) throws Exception {
|
|
|
|
|
File file = new File(SYS_TEM_DIR + name);
|
|
|
|
|
if (file.exists()) {
|
|
|
|
|
return file;
|
|
|
|
|
}
|
|
|
|
|
OutputStream os = new FileOutputStream(file);
|
|
|
|
|
int bytesRead;
|
|
|
|
|
int len = 8192;
|
|
|
|
|
byte[] buffer = new byte[len];
|
|
|
|
|
while ((bytesRead = ins.read(buffer, 0, len)) != -1) {
|
|
|
|
|
os.write(buffer, 0, bytesRead);
|
|
|
|
|
}
|
|
|
|
|
os.close();
|
|
|
|
|
ins.close();
|
|
|
|
|
return file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导出excel
|
|
|
|
|
*/
|
|
|
|
|
public static void downloadExcel(List<Map<String, Object>> list, HttpServletResponse response) throws IOException {
|
|
|
|
|
String tempPath = SYS_TEM_DIR + IdUtil.fastSimpleUUID() + ".xlsx";
|
|
|
|
|
File file = new File(tempPath);
|
|
|
|
|
BigExcelWriter writer = ExcelUtil.getBigWriter(file);
|
|
|
|
|
// 一次性写出内容,使用默认样式,强制输出标题
|
|
|
|
|
writer.write(list, true);
|
|
|
|
|
SXSSFSheet sheet = (SXSSFSheet) writer.getSheet();
|
|
|
|
|
//上面需要强转SXSSFSheet 不然没有trackAllColumnsForAutoSizing方法
|
|
|
|
|
sheet.trackAllColumnsForAutoSizing();
|
|
|
|
|
//列宽自适应
|
|
|
|
|
writer.autoSizeColumnAll();
|
|
|
|
|
//response为HttpServletResponse对象
|
|
|
|
|
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8");
|
|
|
|
|
//test.xls是弹出下载对话框的文件名,不能为中文,中文请自行编码
|
|
|
|
|
response.setHeader("Content-Disposition", "attachment;filename=file.xlsx");
|
|
|
|
|
ServletOutputStream out = response.getOutputStream();
|
|
|
|
|
// 终止后删除临时文件
|
|
|
|
|
file.deleteOnExit();
|
|
|
|
|
writer.flush(out, true);
|
|
|
|
|
//此处记得关闭输出Servlet流
|
|
|
|
|
IoUtil.close(out);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|