From 4ecf2dbe2c255c3b556ff4bfb49b4e2e8285bd17 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Tue, 31 Aug 2021 11:24:45 +0800
Subject: [PATCH] 1.ftp
---
src/main/java/org/springblade/modules/FTP/monitor.java | 134 +++++++++++++++++++++++++++++++++++---------
1 files changed, 106 insertions(+), 28 deletions(-)
diff --git a/src/main/java/org/springblade/modules/FTP/monitor.java b/src/main/java/org/springblade/modules/FTP/monitor.java
index 2058172..58604ca 100644
--- a/src/main/java/org/springblade/modules/FTP/monitor.java
+++ b/src/main/java/org/springblade/modules/FTP/monitor.java
@@ -2,6 +2,7 @@
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
+import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@@ -9,20 +10,16 @@
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/sql.json";
- @Scheduled(cron = "*/5 * * * * ?")
+ //文件名
+ //private static String fileName = "nsql.json";
+
+
+ @Scheduled(cron = "*/30 * * * * ?")
public static boolean isFTPFileExist() {
FTPClient ftp = new FTPClient();
@@ -31,7 +28,7 @@
// 连接ftp服务器
- ftp.connect(ftpHost, ftpPort);
+ ftp.connect(ftpHost_dev, ftpPort);
// 登陆
@@ -59,35 +56,116 @@
// 提取绝对地址的目录以及文件名
- ftpPath = ftpPath.replace("ftp://" + ftpHost + ":" + ftpPort + "/", "");
+ //ftpPath = ftpPath.replace("ftp://" + ftpHost + ":" + ftpPort + "/", "");
- String dir = ftpPath.substring(0, ftpPath.lastIndexOf("/"));
+ //String dir = ftpPath.substring(0, ftpPath.lastIndexOf("/"));
- String file = ftpPath.substring(ftpPath.lastIndexOf("/") + 1);
+ // file = ftpPath.substring(ftpPath.lastIndexOf("/") + 1);
// 进入文件所在目录,注意编码格式,以能够正确识别中文目录
- ftp.changeWorkingDirectory(new String(dir.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
+ //ftp.changeWorkingDirectory(new String(dir.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
// 检验文件是否存在
-
- InputStream is = ftp.retrieveFileStream(new String(file.getBytes("GBK"), FTP.DEFAULT_CONTROL_ENCODING));
-
- if (is == null || ftp.getReplyCode() == FTPReply.FILE_UNAVAILABLE) {
- System.out.println(false);
+ ftp.changeWorkingDirectory(ftpPath);
+ FTPFile[] files = ftp.listFiles();
+ if (files.length == 0) {
return false;
-
+ } else {
+ for (FTPFile file : files) {
+ System.out.println("文件:"+file);
+ 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, 1);
+ if (substring1.equals("w")) {
+ //把文件下载到本地
+ FtpUtil.downloadFtpFile(ftpHost_dev, 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.deletes(fileName);
+ MysqlCenlint.deletess(fileName);
+ FtpUtil.deleteFile(ftpHost_dev, ftpPort, ftpUserName, ftpPassword, "anbao/", fileName);
+ is.close();
+ ftp.completePendingCommand();
+ }
+ else {
+ //把文件下载到本地
+ FtpUtil.downloadFtpFile(ftpHost_dev, ftpUserName, ftpPassword, ftpPort, ftpPath, MinioPath, fileName);
+ //MysqlCenlint.deletess(fileName);
+ FtpUtil.deleteFile(ftpHost_dev, ftpPort, ftpUserName, ftpPassword, "anbao/", fileName);
+ is.close();
+ ftp.completePendingCommand();
+ }
+ }
+ }
+ return true;
}
- if (is != null) {
- System.out.println(true);
- is.close();
- ftp.completePendingCommand();
+ //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();
+//
+// }
- return true;
} catch (Exception e) {
--
Gitblit v1.9.3