From cc057177b2fb17aee9a173a6adbabdc578fd74c7 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Mon, 06 Dec 2021 10:30:44 +0800
Subject: [PATCH] 1.许可

---
 src/main/java/org/springblade/modules/FTP/monitor.java |   30 +++++++++---------------------
 1 files changed, 9 insertions(+), 21 deletions(-)

diff --git a/src/main/java/org/springblade/modules/FTP/monitor.java b/src/main/java/org/springblade/modules/FTP/monitor.java
index e1fb132..c7f32a1 100644
--- a/src/main/java/org/springblade/modules/FTP/monitor.java
+++ b/src/main/java/org/springblade/modules/FTP/monitor.java
@@ -10,25 +10,12 @@
 import java.io.IOException;
 import java.io.InputStream;
 
+import static org.springblade.common.constant.FtpConstant.*;
+
 @Component
 public class monitor {
-	//ftp服务器IP地址
-	private static String ftpHost = "192.168.0.105";
-	//ftp服务器端口
-	private static int ftpPort = 21;
-	//ftp服务器用户名
-	private static String ftpUserName = "yly";
-	//ftp服务器密码
-	private static String ftpPassword = "Yly@123";
-	//ftp服务器路径
-	private static String ftpPath = "anbao/";
-	//本地路径
-	private static String localPath = "D:\\anbao";
-	//文件名
-	//private static String fileName = "nsql.json";
 
-
-	@Scheduled(cron = "*/30 * * * * ?")
+	//@Scheduled(cron = "*/30 * * * * ?")
 	public static boolean isFTPFileExist() {
 
 		FTPClient ftp = new FTPClient();
@@ -37,7 +24,7 @@
 
 			// 连接ftp服务器
 
-			ftp.connect(ftpHost, ftpPort);
+			ftp.connect(ftpHost_dev, ftpPort);
 
 			// 登陆
 
@@ -76,6 +63,7 @@
 			//ftp.changeWorkingDirectory(new String(dir.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
 
 			// 检验文件是否存在
+			ftp.changeWorkingDirectory(ftpPath);
 			FTPFile[] files = ftp.listFiles();
 			if (files.length==0){
 				return false;
@@ -87,7 +75,7 @@
 					String substring1 = fileName.substring(0, 1);
 					if (substring1.equals("n")){
 						//把文件下载到本地
-						FtpUtil.downloadFtpFile(ftpHost, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
+						FtpUtil.downloadFtpFile(ftpHost_dev, ftpUserName, ftpPassword, ftpPort, ftpPath, localPath, fileName);
 						//
 						String s = OutJson.TestJson(fileName);
 						//sql语句
@@ -111,9 +99,9 @@
 							}
 						}
 						//删除本地文件
-						MysqlCenlint.deletes(fileName);
+						//MysqlCenlint.deletes(fileName);
 						MysqlCenlint.deletess(fileName);
-						FtpUtil.deleteFile(ftpHost, ftpPort, ftpUserName, ftpPassword, "anbao/", fileName);
+						FtpUtil.deleteFile(ftpHost_dev, ftpPort, ftpUserName, ftpPassword, ftpPath, fileName);
 						is.close();
 						ftp.completePendingCommand();
 					}
@@ -163,7 +151,7 @@
 
 
 		} catch (Exception e) {
-
+			System.out.println("ftp连接失败");
 			e.printStackTrace();
 
 		} finally {

--
Gitblit v1.9.3