2018-01-17 14:10:40 +08:00
|
|
|
|
package cn.keking.utils;
|
|
|
|
|
|
2019-04-16 21:09:32 +08:00
|
|
|
|
import cn.keking.config.ConfigConstants;
|
2019-11-29 14:41:52 +08:00
|
|
|
|
import cn.keking.hutool.URLUtil;
|
2019-06-19 14:18:09 +08:00
|
|
|
|
import cn.keking.model.FileAttribute;
|
2018-01-19 14:51:18 +08:00
|
|
|
|
import cn.keking.model.ReturnResponse;
|
2019-06-19 14:18:09 +08:00
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
2018-01-17 14:10:40 +08:00
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
import java.io.*;
|
|
|
|
|
import java.net.*;
|
|
|
|
|
import java.util.UUID;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author yudian-it
|
|
|
|
|
*/
|
|
|
|
|
@Component
|
|
|
|
|
public class DownloadUtils {
|
|
|
|
|
|
2019-06-19 14:18:09 +08:00
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(DownloadUtils.class);
|
|
|
|
|
|
|
|
|
|
private String fileDir = ConfigConstants.getFileDir();
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private FileUtils fileUtils;
|
|
|
|
|
|
|
|
|
|
private static final String URL_PARAM_FTP_USERNAME = "ftp.username";
|
|
|
|
|
private static final String URL_PARAM_FTP_PASSWORD = "ftp.password";
|
|
|
|
|
private static final String URL_PARAM_FTP_CONTROL_ENCODING = "ftp.control.encoding";
|
2018-01-17 14:10:40 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2019-06-19 14:18:09 +08:00
|
|
|
|
* @param fileAttribute
|
2018-01-17 14:10:40 +08:00
|
|
|
|
* @return
|
|
|
|
|
*/
|
2019-06-19 14:18:09 +08:00
|
|
|
|
public ReturnResponse<String> downLoad(FileAttribute fileAttribute, String fileName) {
|
|
|
|
|
String urlAddress = fileAttribute.getDecodedUrl();
|
|
|
|
|
String type = fileAttribute.getSuffix();
|
2018-01-17 14:10:40 +08:00
|
|
|
|
ReturnResponse<String> response = new ReturnResponse<>(0, "下载成功!!!", "");
|
|
|
|
|
URL url = null;
|
|
|
|
|
try {
|
2019-11-29 14:41:52 +08:00
|
|
|
|
urlAddress = URLUtil.normalize(urlAddress, true);
|
2018-01-17 14:10:40 +08:00
|
|
|
|
url = new URL(urlAddress);
|
|
|
|
|
} catch (MalformedURLException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
UUID uuid = UUID.randomUUID();
|
|
|
|
|
if (null == fileName) {
|
|
|
|
|
fileName = uuid+ "."+type;
|
2019-06-17 14:21:16 +08:00
|
|
|
|
} else { // 文件后缀不一致时,以type为准(针对simText【将类txt文件转为txt】)
|
2018-01-17 14:10:40 +08:00
|
|
|
|
fileName = fileName.replace(fileName.substring(fileName.lastIndexOf(".") + 1), type);
|
|
|
|
|
}
|
|
|
|
|
String realPath = fileDir + fileName;
|
|
|
|
|
File dirFile = new File(fileDir);
|
|
|
|
|
if (!dirFile.exists()) {
|
|
|
|
|
dirFile.mkdirs();
|
|
|
|
|
}
|
|
|
|
|
try {
|
2019-06-19 14:18:09 +08:00
|
|
|
|
if ("ftp".equals(url.getProtocol())) {
|
|
|
|
|
String ftpUsername = fileUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_USERNAME);
|
|
|
|
|
String ftpPassword = fileUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_PASSWORD);
|
|
|
|
|
String ftpControlEncoding = fileUtils.getUrlParameterReg(fileAttribute.getUrl(), URL_PARAM_FTP_CONTROL_ENCODING);
|
|
|
|
|
FtpUtils.download(fileAttribute.getUrl(), realPath, ftpUsername, ftpPassword, ftpControlEncoding);
|
|
|
|
|
} else {
|
|
|
|
|
URLConnection connection = url.openConnection();
|
|
|
|
|
InputStream in = connection.getInputStream();
|
2018-01-17 14:10:40 +08:00
|
|
|
|
|
2019-06-19 14:18:09 +08:00
|
|
|
|
FileOutputStream os = new FileOutputStream(realPath);
|
|
|
|
|
byte[] buffer = new byte[4 * 1024];
|
|
|
|
|
int read;
|
|
|
|
|
while ((read = in.read(buffer)) > 0) {
|
|
|
|
|
os.write(buffer, 0, read);
|
|
|
|
|
}
|
|
|
|
|
os.close();
|
|
|
|
|
in.close();
|
2018-01-17 14:10:40 +08:00
|
|
|
|
}
|
|
|
|
|
response.setContent(realPath);
|
|
|
|
|
// 同样针对类txt文件,如果成功msg包含的是转换后的文件名
|
|
|
|
|
response.setMsg(fileName);
|
|
|
|
|
|
|
|
|
|
// txt转换文件编码为utf8
|
|
|
|
|
if("txt".equals(type)){
|
|
|
|
|
convertTextPlainFileCharsetToUtf8(realPath);
|
|
|
|
|
}
|
|
|
|
|
return response;
|
|
|
|
|
} catch (IOException e) {
|
2020-05-14 10:11:15 +08:00
|
|
|
|
LOGGER.error("文件下载失败,url:{}", urlAddress, e);
|
2018-01-17 14:10:40 +08:00
|
|
|
|
response.setCode(1);
|
|
|
|
|
response.setContent(null);
|
|
|
|
|
if (e instanceof FileNotFoundException) {
|
|
|
|
|
response.setMsg("文件不存在!!!");
|
2019-06-19 14:18:09 +08:00
|
|
|
|
} else {
|
2018-01-17 14:10:40 +08:00
|
|
|
|
response.setMsg(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
return response;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 转换文本文件编码为utf8
|
|
|
|
|
* 探测源文件编码,探测到编码切不为utf8则进行转码
|
|
|
|
|
* @param filePath 文件路径
|
|
|
|
|
*/
|
|
|
|
|
private static void convertTextPlainFileCharsetToUtf8(String filePath) throws IOException {
|
|
|
|
|
File sourceFile = new File(filePath);
|
|
|
|
|
if(sourceFile.exists() && sourceFile.isFile() && sourceFile.canRead()) {
|
|
|
|
|
String encoding = null;
|
|
|
|
|
try {
|
|
|
|
|
FileCharsetDetector.Observer observer = FileCharsetDetector.guessFileEncoding(sourceFile);
|
|
|
|
|
// 为准确探测到编码,不适用猜测的编码
|
|
|
|
|
encoding = observer.isFound()?observer.getEncoding():null;
|
|
|
|
|
// 为准确探测到编码,可以考虑使用GBK 大部分文件都是windows系统产生的
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
// 编码探测失败,
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
if(encoding != null && !"UTF-8".equals(encoding)){
|
|
|
|
|
// 不为utf8,进行转码
|
|
|
|
|
File tmpUtf8File = new File(filePath+".utf8");
|
|
|
|
|
Writer writer = new OutputStreamWriter(new FileOutputStream(tmpUtf8File),"UTF-8");
|
|
|
|
|
Reader reader = new BufferedReader(new InputStreamReader(new FileInputStream(sourceFile),encoding));
|
|
|
|
|
char[] buf = new char[1024];
|
|
|
|
|
int read;
|
|
|
|
|
while ((read = reader.read(buf)) > 0){
|
|
|
|
|
writer.write(buf, 0, read);
|
|
|
|
|
}
|
|
|
|
|
reader.close();
|
|
|
|
|
writer.close();
|
|
|
|
|
// 删除源文件
|
|
|
|
|
sourceFile.delete();
|
|
|
|
|
// 重命名
|
|
|
|
|
tmpUtf8File.renameTo(sourceFile);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|