【工具类】JAVA开发从SFTP服务器下载文件

打印 上一主题 下一主题

主题 1008|帖子 1008|积分 3024

SFTPConstants SFTP设置文件

  1. package main;
  2. public class SFTPConstants {
  3.     public static final String SFTP_REQ_HOST = "192.168.1.11";
  4.     public static final String SFTP_REQ_PORT = "22";
  5.     public static final String SFTP_REQ_USERNAME = "svc_sftp_service";
  6.     public static final String SFTP_REQ_PASSWORD = "ZZZZ4VeIm5Ids3HgxxfZZZ";
  7.     public static final int SFTP_DEFAULT_PORT = 22;
  8.     public static final String SFTP_REQ_LOC = "location";
  9. }
复制代码
SftpClientUtil SFTP工具类

  1. package main;
  2. import com.jcraft.jsch.*;
  3. import org.jboss.logging.Logger;
  4. import java.io.*;
  5. import java.util.*;
  6. public class SftpClientUtil {
  7.     private static Logger logger = Logger.getLogger(SftpClientUtil.class);
  8.     private Session session;
  9.     private Channel channel;
  10.     private ChannelSftp sftp;
  11.     private InputStream in;
  12.     private OutputStream out;
  13.     /**
  14.      * 构造函数1
  15.      *
  16.      * @param host       主机
  17.      * @param username   用户名
  18.      * @param password   密码
  19.      * @param port       端口
  20.      * @param isHightSSH :jsch 与 ssh 版本适配,ssh>7.6 为true,反之为false
  21.      * @throws Exception
  22.      */
  23.     public SftpClientUtil(String host, String username, String password, int port, boolean isHightSSH) throws Exception {
  24.         JSch jsch = new JSch();
  25.         this.session = jsch.getSession(username, host, port);
  26.         session.setPassword(password);
  27.         Properties config = new Properties();
  28.         config.put("StrictHostKeyChecking", "no"); // 不验证 HostKey
  29.         if (isHightSSH) {
  30.             config.put("kex", "diffie-hellman-group1-sha1,"
  31.                     + "diffie-hellman-group-exchange-sha1,"
  32.                     + "diffie-hellman-group-exchange-sha256"); //适配新版本ssh需添加对应的加密算法
  33.         }
  34.         session.setConfig(config);
  35.         try {
  36.             session.connect();
  37.         } catch (Exception e) {
  38.             if (session.isConnected())
  39.                 session.disconnect();
  40.             logger.error("链接报错!!!", e);
  41.             throw new Exception("连接服务器失败,请检查主机[" + host + "],端口[" + port + "],用户名[" + username + "],端口[" + port + "]是否正确,以上信息正确的情况下请检查网络连接是否正常或者请求被防火墙拒绝.");
  42.         }
  43.         channel = session.openChannel("sftp");
  44.         try {
  45.             if (channel.isConnected())
  46.                 channel.disconnect();
  47.             channel.connect();
  48.         } catch (Exception e) {
  49.             throw new Exception("连接服务器失败,请检查主机[" + host + "],端口[" + port + "],用户名[" + username + "],端口[" + port + "]是否正确,以上信息正确的情况下请检查网络连接是否正常或者请求被防火墙拒绝.");
  50.         }
  51.         sftp = (ChannelSftp) channel;
  52.     }
  53.     /**
  54.      * 构造函数2
  55.      *
  56.      * @param host     主机
  57.      * @param username 用户名
  58.      * @param password 密码
  59.      * @param port     端口
  60.      * @param encoding 字符集编码
  61.      * @throws Exception
  62.      */
  63.     public SftpClientUtil(String host, String username, String password, int port, String encoding) throws Exception {
  64.         JSch jsch = new JSch();
  65.         this.session = jsch.getSession(username, host, port);
  66.         session.setPassword(password);
  67.         Properties config = new Properties();
  68.         config.put("StrictHostKeyChecking", "no"); // 不验证 HostKey
  69.         session.setConfig(config);
  70.         try {
  71.             session.connect();
  72.         } catch (Exception e) {
  73.             if (session.isConnected())
  74.                 session.disconnect();
  75.             throw new Exception("连接服务器失败,请检查主机[" + host + "],端口1[" + port + "],用户名[" + username + "],端口[" + port + "]是否正确,以上信息正确的情况下请检查网络连接是否正常或者请求被防火墙拒绝.");
  76.         }
  77.         channel = session.openChannel("sftp");
  78.         try {
  79.             channel.connect();
  80.         } catch (Exception e) {
  81.             if (channel.isConnected())
  82.                 channel.disconnect();
  83.             throw new Exception("连接服务器失败,请检查主机[" + host + "],端口[" + port + "],用户名[" + username + "],密码[" + password + "]是否正确,以上信息正确的情况下请检查网络连接是否正常或者请求被防火墙拒绝.");
  84.         }
  85.         sftp = (ChannelSftp) channel;
  86.         sftp.setFilenameEncoding(encoding);
  87.     }
  88.     /**
  89.      * 构造函数3
  90.      *
  91.      * @param host     主机
  92.      * @param username 用户名
  93.      * @param password 密码
  94.      * @param port     端口
  95.      * @param encoding 字符集
  96.      * @param timeout  超时时间
  97.      * @throws Exception
  98.      */
  99.     private SftpClientUtil(String host, String username, String password, int port, String encoding, int timeout)
  100.             throws Exception {
  101.         JSch jsch = new JSch();
  102.         this.session = jsch.getSession(username, host, port);
  103.         session.setPassword(password);
  104.         Properties config = new Properties();
  105.         config.put("StrictHostKeyChecking", "no"); // 不验证 HostKey
  106.         session.setConfig(config);
  107.         try {
  108.             session.connect();
  109.         } catch (Exception e) {
  110.             if (session.isConnected())
  111.                 session.disconnect();
  112.             throw new Exception("连接服务器失败,请检查主机[" + host + "],端口[" + port + "],用户名[" + username + "],密码[" + password + "]是否正确,以上信息正确的情况下请检查网络连接是否正常或者请求被防火墙拒绝.");
  113.         }
  114.         session.setTimeout(timeout);
  115.         channel = session.openChannel("sftp");
  116.         try {
  117.             channel.connect();
  118.         } catch (Exception e) {
  119.             if (channel.isConnected())
  120.                 channel.disconnect();
  121.             throw new Exception("连接服务器失败,请检查主机[" + host + "],端口[" + port + "],用户名[" + username + "],密码[" + password + "]是否正确,以上信息正确的情况下请检查网络连接是否正常或者请求被防火墙拒绝.");
  122.         }
  123.         sftp = (ChannelSftp) channel;
  124.         sftp.setFilenameEncoding(encoding);
  125.     }
  126.     /**
  127.      * 文件上传
  128.      *
  129.      * @param remotePath     远端路径
  130.      * @param remoteFileName 上传到远端后的文件名
  131.      * @param localPath      本地路径
  132.      * @param localFileName  本地文件名
  133.      * @return
  134.      */
  135.     public boolean uploadFile(String remotePath, String remoteFileName, String localPath, String localFileName) {
  136.         FileInputStream in = null;
  137.         try {
  138.             createDir(remotePath);
  139.             File file = new File(localPath + localFileName);
  140.             in = new FileInputStream(file);
  141.             sftp.put(in, remoteFileName);
  142.             return true;
  143.         } catch (FileNotFoundException e) {
  144.             e.printStackTrace();
  145.         } catch (SftpException e) {
  146.             e.printStackTrace();
  147.         } finally {
  148.             if (in != null) {
  149.                 try {
  150.                     in.close();
  151.                 } catch (IOException e) {
  152.                     e.printStackTrace();
  153.                 }
  154.             }
  155.         }
  156.         return false;
  157.     }
  158.     //创建目录
  159.     public boolean createDir(String createpath) {
  160.         try {
  161.             createpath = createpath.trim();
  162.             if (isDirExist(createpath)) {
  163.                 this.sftp.cd(createpath);
  164.                 logger.info("cd " + createpath);
  165.                 return true;
  166.             }
  167.             String[] pathArray = createpath.split("/");
  168.             for (String path : pathArray) {
  169.                 path = path.trim();
  170.                 if ("".equals(path)) {
  171.                     continue;
  172.                 }
  173.                 if (!isDirExist(path)) {
  174.                     sftp.mkdir(path);
  175.                 }
  176.                 logger.info("cd " + path);
  177.                 sftp.cd(path);
  178.             }
  179.             return true;
  180.         } catch (SftpException e) {
  181.             e.printStackTrace();
  182.         }
  183.         return false;
  184.     }
  185.     //判断目录是否存在
  186.     public boolean isDirExist(String directory) {
  187.         boolean isDirExistFlag = false;
  188.         try {
  189.             SftpATTRS sftpATTRS = sftp.lstat(directory);
  190.             return sftpATTRS.isDir();
  191.         } catch (Exception e) {
  192.             if (e.getMessage().toLowerCase().equals("no such file")) {
  193.                 logger.error("directory:" + directory + ",no such file ERROR!!!");
  194.             }
  195.         }
  196.         return isDirExistFlag;
  197.     }
  198.     /**
  199.      * 文件下载
  200.      *
  201.      * @param remotePath    远程文件存放路径
  202.      * @param localPath     下载到本地的路径
  203.      * @return 下载后的文件名集合
  204.      * @throws Exception
  205.      */
  206.     public List<String> downloadFiles(String remotePath, String localPath){
  207.         List<String> downloadFiles = new ArrayList<String>();
  208.         try {
  209.             logger.info("切换到指定目录:" + remotePath);
  210.             boolean flag = openDir(remotePath, sftp);
  211.             if (flag) {
  212.                 //1.获取远端路径下所有文件
  213.                 Vector<?> vv = listFiles("*");
  214.                 if (vv == null) {
  215.                     return null;
  216.                 } else {
  217.                     for (Object object : vv) {
  218.                         ChannelSftp.LsEntry entry = (ChannelSftp.LsEntry) object;
  219.                         String remoteFileName = entry.getFilename();
  220.                         logger.info("校验文件名:" + remoteFileName);
  221.                         String path = localPath.substring(localPath.length() - 1).equals("/") ? localPath : localPath + "/";
  222.                         File file = new File(path + remoteFileName);
  223.                         logger.info("保存校对文件的本地路径为:" + file.getAbsolutePath());
  224.                         logger.info("start downLoad " + remoteFileName + " ~~");
  225.                         sftp.get(remoteFileName, new FileOutputStream(file));
  226.                         logger.info("downLoad ok ~~");
  227.                         downloadFiles.add(remoteFileName);
  228.                     }
  229.                     if (downloadFiles.size() < 1) {
  230.                         logger.error("remotePath:" + remotePath + "路径下,未匹配到校对文件!");
  231.                     }
  232.                 }
  233.             } else {
  234.                 logger.info("对应的目录" + remotePath + "不存在!");
  235.             }
  236.         } catch (Exception e) {
  237.             e.printStackTrace();
  238.         } finally {
  239.             if (sftp != null) {
  240.                 if (sftp.isConnected()) {
  241.                     sftp.disconnect();
  242.                 }
  243.             }
  244.             if (session != null) {
  245.                 if (session.isConnected()) {
  246.                     session.disconnect();
  247.                 }
  248.             }
  249.         }
  250.         return downloadFiles;
  251.     }
  252.     //打开或者进入指定目录
  253.     public boolean openDir(String directory, ChannelSftp sftp) {
  254.         try {
  255.             sftp.cd(directory);
  256.             logger.info("cd " + directory + " ok");
  257.             return true;
  258.         } catch (SftpException e) {
  259.             logger.error(e + "");
  260.             return false;
  261.         }
  262.     }
  263.     //返回目录下所有文件信息
  264.     public Vector listFiles(String directory) throws SftpException {
  265.         return sftp.ls(directory);
  266.     }
  267.     /**
  268.      * 断开与主机的连接
  269.      */
  270.     public void disconnect() {
  271.         try {
  272.             sftp.disconnect();
  273.         } catch (Exception ignored) {
  274.         }
  275.         try {
  276.             channel.disconnect();
  277.         } catch (Exception ignored) {
  278.         }
  279.         try {
  280.             session.disconnect();
  281.         } catch (Exception ignored) {
  282.         }
  283.     }
  284.     /**
  285.      * 得到SFTP实例
  286.      *
  287.      * @param host     主机
  288.      * @param username 用户名
  289.      * @param password 密码
  290.      * @param port     端口
  291.      * @return
  292.      * @throws Exception
  293.      */
  294.     public static SftpClientUtil getInstans(String host, String username, String password, int port) throws Exception {
  295.         return new SftpClientUtil(host, username, password, port, false);
  296.     }
  297.     /**
  298.      * 得到SFTP实例
  299.      *
  300.      * @param host     主机
  301.      * @param username 用户名
  302.      * @param password 密码
  303.      * @param port     端口
  304.      * @param encoding 字符集编码
  305.      * @return
  306.      * @throws Exception
  307.      */
  308.     public static SftpClientUtil getInstans(String host, String username, String password, int port, String encoding)
  309.             throws Exception {
  310.         return new SftpClientUtil(host, username, password, port, encoding);
  311.     }
  312.     /**
  313.      * 得到SFTP实例
  314.      *
  315.      * @param host     主机
  316.      * @param username 用户名
  317.      * @param password 密码
  318.      * @param port     端口
  319.      * @param encoding 字符集编码
  320.      * @param timeout  超时时间
  321.      * @return
  322.      * @throws Exception
  323.      */
  324.     public static SftpClientUtil getInstans(String host, String username, String password, int port, String encoding,
  325.                                             int timeout) throws Exception {
  326.         return new SftpClientUtil(host, username, password, port, encoding, timeout);
  327.     }
  328. }
复制代码
SftpSEGMain main方法

打成JAR文件后 直接放到服务器上执行
  1. package main;
  2. public class SftpSEGMain {
  3.     public static void main(String[] args) {
  4.         try {
  5.             SftpClientUtil sftp =new SftpClientUtil(SFTPConstants.SFTP_REQ_HOST,SFTPConstants.SFTP_REQ_USERNAME,SFTPConstants.SFTP_REQ_PASSWORD, SFTPConstants.SFTP_DEFAULT_PORT,"UTF-8");
  6.             sftp.downloadFiles("/svc_sftp_zmj","D:\\\\DevSoft\\\");
  7.         } catch (Exception e) {
  8.             e.printStackTrace();
  9.         }
  10.     }
  11. }
复制代码
所需JAR文件下载地址:
JAR包

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

汕尾海湾

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表