|
@@ -44,11 +44,11 @@ public class FtpHandler {
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
- * @param filePathName 组装好的文件名称
|
|
|
+ * @param fileList 组装好的文件名称
|
|
|
* @param connectConfig 连接fpt的连接信息
|
|
|
* @return
|
|
|
*/
|
|
|
- public Map<String, Object> readData(String filePathName, String connectConfig) {
|
|
|
+ public Map<String, Object> readData(List<String> fileList, String connectConfig) {
|
|
|
Map<String, Object> connectConfigMaps = (Map<String, Object>) MapTools.strToObj(connectConfig);
|
|
|
FTPClient ftp = null;
|
|
|
try {
|
|
@@ -63,21 +63,23 @@ public class FtpHandler {
|
|
|
ftp.changeWorkingDirectory(basePath);
|
|
|
}
|
|
|
String rootPath = ftp.printWorkingDirectory(); //ftp根目录
|
|
|
- FTPFile[] ftpFiles = ftp.listFiles(rootPath + filePathName);
|
|
|
+ FTPFile[] ftpFiles = ftp.listFiles(rootPath );
|
|
|
if (ftpFiles.length == 0) {
|
|
|
ftp.logout();
|
|
|
- return MapTools.processFail("没有找到文件".concat(filePathName));
|
|
|
+ return MapTools.processFail("没有找到文件");
|
|
|
}
|
|
|
List<File> files = new ArrayList<>();
|
|
|
for (FTPFile ftpFile : ftpFiles) {
|
|
|
- String path = System.getProperty("user.dir") + File.separator + "ftp" + File.separator + ftpFile.getName();
|
|
|
- File targetFile = new File(path);
|
|
|
- files.add(targetFile);
|
|
|
- FileOutputStream fileOutputStream = new FileOutputStream(targetFile);
|
|
|
- ftp.retrieveFile(ftpFile.getName(), fileOutputStream);
|
|
|
- fileOutputStream.close();
|
|
|
+ if (fileList.contains(ftpFile.getName())){
|
|
|
+ String path = System.getProperty("user.dir") + File.separator + "ftp" + File.separator + ftpFile.getName();
|
|
|
+ File targetFile = new File(path);
|
|
|
+ files.add(targetFile);
|
|
|
+ FileOutputStream fileOutputStream = new FileOutputStream(targetFile);
|
|
|
+ ftp.retrieveFile(ftpFile.getName(), fileOutputStream);
|
|
|
+ fileOutputStream.close();
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
+ ftp.logout();//退出ftp
|
|
|
List<String> fileContent = new ArrayList<>();
|
|
|
for (File ftpFile : files) {
|
|
|
String path = System.getProperty("user.dir") + File.separator + "ftp" + File.separator + ftpFile.getName();
|
|
@@ -93,7 +95,6 @@ public class FtpHandler {
|
|
|
fileContent.add(baos.toString(StandardCharsets.UTF_8));
|
|
|
}
|
|
|
}
|
|
|
- ftp.logout();//退出ftp
|
|
|
return MapTools.processSuccess(fileContent);
|
|
|
} catch (Exception e) {
|
|
|
return MapTools.processFail("fpt读取文件异常".concat(LogUtils.getException(e)));
|