From 3c1126fbff1aaed94a2e16c2ef98a03e36bf49f1 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Fri, 06 May 2022 12:01:13 +0800
Subject: [PATCH] 心理咨询,业主反馈修改,bean copy 修改
---
src/main/java/org/springblade/modules/FTP/Monitor.java | 352 ++++++++++++++++++++++++++++++++++++++++++++--------------
1 files changed, 267 insertions(+), 85 deletions(-)
diff --git a/src/main/java/org/springblade/modules/FTP/Monitor.java b/src/main/java/org/springblade/modules/FTP/Monitor.java
index 63561dc..e98962c 100644
--- a/src/main/java/org/springblade/modules/FTP/Monitor.java
+++ b/src/main/java/org/springblade/modules/FTP/Monitor.java
@@ -10,6 +10,9 @@
import java.io.IOException;
import java.io.InputStream;
+import java.io.UnsupportedEncodingException;
+import java.net.SocketException;
+import java.util.List;
import static org.springblade.common.config.FtpConfig.*;
@@ -20,8 +23,6 @@
*/
@Component
public class Monitor {
-
-
/**
* 读取文件(对象)
@@ -85,6 +86,10 @@
//返回
return new Result(202,null,result.getMsg(),null);
}
+ if (result.getCode()==203) {
+ //返回
+ return new Result(203,null,result.getMsg(),null);
+ }
}
}
return new Result(400,null,"未读取到对应的文件",null);
@@ -105,10 +110,160 @@
}
/**
- * 读取文件
+ * 读取文件(对象)用户批量操作返回
+ * @param uuid 随机数
* @return
*/
- // @Scheduled(cron = "*/30 * * * * ?")
+ public static Result getFtpDataByUuidList(String uuid) {
+ //创建 ftp 对象
+ FTPClient ftp = new FTPClient();
+ boolean flag = false;
+ try {
+ //连接
+ ftp.connect(ftpHost, ftpPort);
+ // 登陆
+ ftp.login(ftpUserName, ftpPassword);
+ // 检验登陆操作的返回码是否正确
+ if (!FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
+ ftp.disconnect();
+ return new Result(400,null,"ftp 连接失败",null);
+ }
+
+ ftp.enterLocalActiveMode();
+
+ // 设置文件类型为二进制,与ASCII有区别
+ ftp.setFileType(FTP.BINARY_FILE_TYPE);
+
+ // 设置编码格式
+ ftp.setControlEncoding("GBK");
+
+ // 检验文件是否存在
+ ftp.changeWorkingDirectory(ftpPath);
+ FTPFile[] files = ftp.listFiles();
+ if (files.length==0){
+ return new Result(400,null,"未读取到文件",null);
+ } else {
+ for (FTPFile file : files){
+ String fileName = file.getName();
+ InputStream is = ftp.retrieveFileStream(new String(fileName.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
+ String substring1 = fileName.substring(0, 2);
+ if (substring1.equals("nl")){
+ //把文件下载到本地
+ FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
+ // 解析数据
+ String s = OutJson.TestJson(fileName);
+ //数据处理
+ Result result = DataHandler.handlerList(s,uuid);
+ //匹配上了删除文件
+ if (result.getCode()==200) {
+ //删除本地文件
+ MysqlCenlint.deletess(fileName);
+ //删除 ftp 文件
+ FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, ftpPath, fileName);
+ //返回
+ return result;
+ }
+ is.close();
+ ftp.completePendingCommand();
+ }
+ }
+ return new Result(400,null,"未读取到对应的文件",null);
+ }
+ } catch (Exception e) {
+ System.out.println("ftp连接失败");
+ e.printStackTrace();
+ } finally {
+ if (ftp != null) {
+ try {
+ ftp.disconnect();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+ }
+ return new Result(400,null,"失败",null);
+ }
+
+ /**
+ * 读取文件(对象)报名返回
+ * @param uuid 随机数
+ * @return
+ */
+ public static Result getFtpDataByUuidListTrain(String uuid) {
+ //创建 ftp 对象
+ FTPClient ftp = new FTPClient();
+ boolean flag = false;
+ try {
+ //连接
+ ftp.connect(ftpHost, ftpPort);
+ // 登陆
+ ftp.login(ftpUserName, ftpPassword);
+ // 检验登陆操作的返回码是否正确
+ if (!FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
+ ftp.disconnect();
+ return new Result(400,null,"ftp 连接失败",null);
+ }
+
+ ftp.enterLocalActiveMode();
+
+ // 设置文件类型为二进制,与ASCII有区别
+ ftp.setFileType(FTP.BINARY_FILE_TYPE);
+
+ // 设置编码格式
+ ftp.setControlEncoding("GBK");
+
+ // 检验文件是否存在
+ ftp.changeWorkingDirectory(ftpPath);
+ FTPFile[] files = ftp.listFiles();
+ if (files.length==0){
+ return new Result(400,null,"未读取到文件",null);
+ } else {
+ for (FTPFile file : files){
+ String fileName = file.getName();
+ InputStream is = ftp.retrieveFileStream(new String(fileName.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
+ String substring1 = fileName.substring(0, 2);
+ if (substring1.equals("nt")){
+ //把文件下载到本地
+ FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
+ // 解析数据
+ String s = OutJson.TestJson(fileName);
+ //数据处理
+ Result result = DataHandler.handlerList(s,uuid);
+ //匹配上了删除文件
+ if (result.getCode()==200) {
+ //删除本地文件
+ MysqlCenlint.deletess(fileName);
+ //删除 ftp 文件
+ FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, ftpPath, fileName);
+ //返回
+ return result;
+ }
+ is.close();
+ ftp.completePendingCommand();
+ }
+ }
+ return new Result(400,null,"未读取到对应的文件",null);
+ }
+ } catch (Exception e) {
+ System.out.println("ftp连接失败");
+ e.printStackTrace();
+ } finally {
+ if (ftp != null) {
+ try {
+ ftp.disconnect();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+ }
+ return new Result(400,null,"失败",null);
+ }
+
+ /**
+ * 读取内外推送的文件,每30秒读取一次
+ * @return
+ */
+ @Scheduled(cron = "*/30 * * * * ?")
public static boolean isFTPFileExist() {
FTPClient ftp = new FTPClient();
try {
@@ -137,110 +292,137 @@
return false;
}
else {
+ for (FTPFile file : files) {
+ String fileName = file.getName();
+ InputStream is = ftp.retrieveFileStream(new String(fileName.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
+ if (null == is) {
+ return false;
+ } else {
+ String substring1 = fileName.substring(0, 4);
+ if (substring1.equals("nsql")) {
+ //把文件下载到本地
+ FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
+ //
+ String s = OutJson.TestJson(fileName);
+ //sql语句
+ String sql = OutJson.stringReplace(s);
+ String[] split = sql.split(";");//以逗号分割
+ for (String sqls : split) {
+ //判断是否是新增,删除,修改
+ String substring = sqls.substring(0, 2);
+ //新增
+ if (substring.equals("in")) {
+ //运行sql语句
+ MysqlCenlint.inster(sqls);
+ }
+ //修改
+ else if (substring.equals("up")) {
+ MysqlCenlint.update(sqls);
+ }
+ //删除
+ else {
+ MysqlCenlint.delete(sqls);
+ }
+ }
+ //删除本地服务器文件
+ MysqlCenlint.deletess(fileName);
+ //删除 ftp 服务器文件
+ FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, ftpPath, fileName);
+ }
+ //关闭流
+ is.close();
+ ftp.completePendingCommand();
+ }
+ return true;
+ }
+ }
+ } catch (Exception e) {
+ System.out.println("ftp连接失败");
+ e.printStackTrace();
+ } finally {
+ if (ftp != null) {
+ try {
+ ftp.disconnect();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+ }
+ return false;
+ }
+
+ /**
+ * 获取保安证编号位数
+ * @param uuid 随机数
+ * @return
+ */
+ public static Result getSecurityNumberBit(String uuid) {
+ //创建 ftp 对象
+ FTPClient ftp = new FTPClient();
+ boolean flag = false;
+ try {
+ //连接
+ ftp.connect(ftpHost, ftpPort);
+ // 登陆
+ ftp.login(ftpUserName, ftpPassword);
+ // 检验登陆操作的返回码是否正确
+ if (!FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
+ ftp.disconnect();
+ return new Result(400,null,"ftp 连接失败",null);
+ }
+
+ ftp.enterLocalActiveMode();
+
+ // 设置文件类型为二进制,与ASCII有区别
+ ftp.setFileType(FTP.BINARY_FILE_TYPE);
+
+ // 设置编码格式
+ ftp.setControlEncoding("GBK");
+
+ // 检验文件是否存在
+ ftp.changeWorkingDirectory(ftpPath);
+ FTPFile[] files = ftp.listFiles();
+ if (files.length==0){
+ return new Result(400,null,"未读取到文件",null);
+ } else {
for (FTPFile file : files){
String fileName = file.getName();
InputStream is = ftp.retrieveFileStream(new String(fileName.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
- String substring1 = fileName.substring(0, 1);
- if (substring1.equals("n")){
+ String substring1 = fileName.substring(0, 2);
+ if (substring1.equals("ns")){
//把文件下载到本地
FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
- //
+ // 解析数据
String s = OutJson.TestJson(fileName);
- //sql语句
- String sql = OutJson.stringReplace(s);
- String[] split = sql.split(";");//以逗号分割
- for (String sqls : split) {
- //判断是否是新增,删除,修改
- String substring = sqls.substring(0, 2);
- //新增
- if (substring.equals("in")) {
- //运行sql语句
- MysqlCenlint.inster(sqls);
- }
- //修改
- else if (substring.equals("up")) {
- MysqlCenlint.update(sqls);
- }
- //删除
- else {
- MysqlCenlint.delete(sqls);
- }
+ //数据处理
+ Result result = DataHandler.handlerSecurityNumberBit(s,uuid);
+ //匹配上了删除文件
+ if (result.getCode()==200) {
+ //删除本地文件
+ MysqlCenlint.deletess(fileName);
+ //删除 ftp 文件
+ FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, ftpPath, fileName);
+ //返回
+ return result;
}
- //删除本地文件
- //MysqlCenlint.deletes(fileName);
- MysqlCenlint.deletess(fileName);
- FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, ftpPath, fileName);
is.close();
ftp.completePendingCommand();
}
}
- return true;
+ return new Result(400,null,"未读取到对应的文件",null);
}
-
- //InputStream is = ftp.retrieveFileStream(new String(file.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
-
-// if (is == null || ftp.getReplyCode() == FTPReply.FILE_UNAVAILABLE) {
-// return false;
-//
-// }
-//
-// if (is != null) {
-// //把文件下载到本地
-// FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
-// //
-// String s = OutJson.TestJson();
-// //sql语句
-// String sql = OutJson.stringReplace(s);
-// String[] split = sql.split(";");//以逗号分割
-// for (String sqls : split) {
-// //判断是否是新增,删除,修改
-// String substring = sqls.substring(0, 2);
-// //新增
-// if (substring.equals("in")) {
-// //运行sql语句
-// MysqlCenlint.inster(sqls);
-// }
-// //修改
-// else if (substring.equals("up")) {
-// MysqlCenlint.update(sqls);
-// }
-// //删除
-// else {
-// MysqlCenlint.delete(sqls);
-// }
-// }
-// //删除本地文件
-// MysqlCenlint.delete();
-// FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, "anbao/", "nsql.json");
-// is.close();
-// ftp.completePendingCommand();
-//
-// }
-
-
} catch (Exception e) {
System.out.println("ftp连接失败");
e.printStackTrace();
-
} finally {
-
if (ftp != null) {
-
try {
-
ftp.disconnect();
-
} catch (IOException e) {
-
e.printStackTrace();
-
}
-
}
-
}
-
- return false;
-
+ return new Result(400,null,"失败",null);
}
}
--
Gitblit v1.9.3