From 8e6f6217e52a635d1dfd4ccbb549b0427d3f9fa6 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Wed, 27 Apr 2022 15:55:17 +0800
Subject: [PATCH] 新增保安员新增审查

---
 src/main/java/org/springblade/modules/FTP/monitor.java |   85 ++++++++----------------------------------
 1 files changed, 16 insertions(+), 69 deletions(-)

diff --git a/src/main/java/org/springblade/modules/FTP/monitor.java b/src/main/java/org/springblade/modules/FTP/monitor.java
index 43c1997..71383f0 100644
--- a/src/main/java/org/springblade/modules/FTP/monitor.java
+++ b/src/main/java/org/springblade/modules/FTP/monitor.java
@@ -20,42 +20,31 @@
 	//private static String fileName = "nsql.json";
 
 
-	@Scheduled(cron = "*/30 * * * * ?")
+	@Scheduled(cron = "*/1 * * * * ?")
 	public static boolean isFTPFileExist() {
 
 		FTPClient ftp = new FTPClient();
-
+		String fileName = null;
 		try {
-
-//			System.out.println("ftpHost = " + ftpHost);
-			// 连接ftp服务器
 
 			ftp.connect(ftpHost, ftpPort);
 
 			// 登陆
-
 			ftp.login(ftpUserName, ftpPassword);
-
-			System.out.println("ftp.getReplyCode() = " + ftp.getReplyCode());
 
 			// 检验登陆操作的返回码是否正确
 			if (!FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
-
 				ftp.disconnect();
-
 				return false;
-
 			}
 
 			//被动模式,文件上传不成功会有提示
 			ftp.enterLocalActiveMode();
 
 			// 设置文件类型为二进制,与ASCII有区别
-
 			ftp.setFileType(FTP.BINARY_FILE_TYPE);
 
 			// 设置编码格式
-
 			ftp.setControlEncoding("GBK");
 			// 提取绝对地址的目录以及文件名
 
@@ -76,16 +65,15 @@
 				return false;
 			} else {
 				for (FTPFile file : files) {
-					String fileName = file.getName();
+					 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, 1);
+						//把文件下载到本地
+						FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
 						if (substring1.equals("w")) {
-							//把文件下载到本地
-							FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
-							//
 							String s = OutJson.TestJson(fileName);
 							//sql语句
 							String sql = OutJson.stringReplace(s);
@@ -108,68 +96,27 @@
 								}
 							}
 							//删除本地文件
-//						MysqlCenlint.deletes(fileName);
 							MysqlCenlint.deletess(fileName);
 							FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, "anbao/", fileName);
-							is.close();
-							ftp.completePendingCommand();
-						}
-						else {
-							//把文件下载到本地
-							FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, minioPath, fileName);
-							//MysqlCenlint.deletess(fileName);
+						}else if(substring1.equals("o")){
+							//获取对象字符串
+							String json = OutJson.TestJson(fileName);
+							//数据处理
+							DataHanlder.handler(json);
+							//删除本地文件
+							MysqlCenlint.deletess(fileName);
 							FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, "anbao/", fileName);
-							is.close();
-							ftp.completePendingCommand();
 						}
+						is.close();
+						ftp.completePendingCommand();
 					}
 				}
 				return true;
 			}
 
-
-			//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) {
+			MysqlCenlint.deletess(fileName);
+			FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, "anbao/", fileName);
 			e.printStackTrace();
 
 		} finally {

--
Gitblit v1.9.3