SFTPUtils工具类及使用
配置maven
<dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version></version> </dependency>
工具类
package com.sftp; import com.jcraft.jsch.*; import com.jcraft.jsch.ChannelSftp.LsEntry; import org.apache.log4j.Logger; import java.io.File; import java.io.InputStream; import java.util.ArrayList; import java.util.List; import java.util.Properties; import java.util.Vector; /** * SFTP(Secure File Transfer Protocol),安全文件传送协议。 */ public class Sftp { /** 日志记录器 */ private Logger logger = Logger.getLogger(Sftp.class); /** Session */ private Session session = null; /** Channel */ private ChannelSftp channel = null; /** SFTP服务器IP地址 */ private String host; /** SFTP服务器端口 */ private int port; /** 连接超时时间,单位毫秒 */ private int timeout; /** 用户名 */ private String username; /** 密码 */ private String password; /** * SFTP 安全文件传送协议 * @param host SFTP服务器IP地址 * @param port SFTP服务器端口 * @param timeout 连接超时时间,单位毫秒 * @param username 用户名 * @param password 密码 */ public Sftp(String host,int port,int timeout,String username,String password){ this.host = host; this.port = port; this.timeout = timeout; this.username = username; this.password = password; } /** * 登陆SFTP服务器 * @return boolean */ public boolean login() { try { JSch jsch = new JSch(); session = jsch.getSession(username, host, port); if(password != null){ session.setPassword(password); } Properties config = new Properties(); config.put("StrictHostKeyChecking", "no"); session.setConfig(config); session.setTimeout(timeout); session.connect(); logger.debug("sftp session connected"); logger.debug("opening channel"); channel = (ChannelSftp)session.openChannel("sftp"); channel.connect(); logger.debug("connected successfully"); return true; } catch (JSchException e) { logger.error("sftp login failed",e); return false; } } /** * 上传文件 * <p> * 使用示例,SFTP服务器上的目录结构如下:/testA/testA_B/ * <table border="1"> * <tr><td>当前目录</td><td>方法</td><td>参数:绝对路径/相对路径</td><td>上传后</td></tr> * <tr><td>/</td><td>uploadFile("testA","upload.txt",new FileInputStream(new File("up.txt")))</td><td>相对路径</td><td>/testA/upload.txt</td></tr> * <tr><td>/</td><td>uploadFile("testA/testA_B","upload.txt",new FileInputStream(new File("up.txt")))</td><td>相对路径</td><td>/testA/testA_B/upload.txt</td></tr> * <tr><td>/</td><td>uploadFile("/testA/testA_B","upload.txt",new FileInputStream(new File("up.txt")))</td><td>绝对路径</td><td>/testA/testA_B/upload.txt</td></tr> * </table> * </p> * @param pathName SFTP服务器目录 * @param fileName 服务器上保存的文件名 * @param input 输入文件流 * @return boolean */ public boolean uploadFile(String pathName,String fileName,InputStream input){ String currentDir = currentDir(); if(!changeDir(pathName)){ return false; } try { channel.put(input,fileName,ChannelSftp.OVERWRITE); if(!existFile(fileName)){ logger.debug("upload failed"); return false; } logger.debug("upload successful"); return true; } catch (SftpException e) { logger.error("upload failed",e); return false; } finally { changeDir(currentDir); } } /** * 上传文件 * <p> * 使用示例,SFTP服务器上的目录结构如下:/testA/testA_B/ * <table border="1"> * <tr><td>当前目录</td><td>方法</td><td>参数:绝对路径/相对路径</td><td>上传后</td></tr> * <tr><td>/</td><td>uploadFile("testA","upload.txt","up.txt")</td><td>相对路径</td><td>/testA/upload.txt</td></tr> * <tr><td>/</td><td>uploadFile("testA/testA_B","upload.txt","up.txt")</td><td>相对路径</td><td>/testA/testA_B/upload.txt</td></tr> * <tr><td>/</td><td>uploadFile("/testA/testA_B","upload.txt","up.txt")</td><td>绝对路径</td><td>/testA/testA_B/upload.txt</td></tr> * </table> * </p> * @param pathName SFTP服务器目录 * @param fileName 服务器上保存的文件名 * @param localFile 本地文件 * @return boolean */ public boolean uploadFile(String pathName,String fileName,String localFile){ String currentDir = currentDir(); if(!changeDir(pathName)){ return false; } try { channel.put(localFile,fileName,ChannelSftp.OVERWRITE); if(!existFile(fileName)){ logger.debug("upload failed"); return false; } logger.debug("upload successful"); return true; } catch (SftpException e) { logger.error("upload failed",e); return false; } finally { changeDir(currentDir); } } /** * 下载文件 * <p> * 使用示例,SFTP服务器上的目录结构如下:/testA/testA_B/ * <table border="1"> * <tr><td>当前目录</td><td>方法</td><td>参数:绝对路径/相对路径</td><td>下载后</td></tr> * <tr><td>/</td><td>downloadFile("testA","down.txt","D:\\downDir")</td><td>相对路径</td><td>D:\\downDir\\down.txt</td></tr> * <tr><td>/</td><td>downloadFile("testA/testA_B","down.txt","D:\\downDir")</td><td>相对路径</td><td>D:\\downDir\\down.txt</td></tr> * <tr><td>/</td><td>downloadFile("/testA/testA_B","down.txt","D:\\downDir")</td><td>绝对路径</td><td>D:\\downDir\\down.txt</td></tr> * </table> * </p> * @param remotePath SFTP服务器目录 * @param fileName 服务器上需要下载的文件名 * @param localPath 本地保存路径 * @return boolean */ public boolean downloadFile(String remotePath,String fileName,String localPath){ String currentDir = currentDir(); if(!changeDir(remotePath)){ return false; } try { String localFilePath = localPath + File.separator + fileName; channel.get(fileName,localFilePath); File localFile = new File(localFilePath); if(!localFile.exists()){ logger.debug("download file failed"); return false; } logger.debug("download successful"); return true; } catch (SftpException e) { logger.error("download file failed",e); return false; } finally { changeDir(currentDir); } } /** * 切换工作目录 * <p> * 使用示例,SFTP服务器上的目录结构如下:/testA/testA_B/ * <table border="1"> * <tr><td>当前目录</td><td>方法</td><td>参数(绝对路径/相对路径)</td><td>切换后的目录</td></tr> * <tr><td>/</td><td>changeDir("testA")</td><td>相对路径</td><td>/testA/</td></tr> * <tr><td>/</td><td>changeDir("testA/testA_B")</td><td>相对路径</td><td>/testA/testA_B/</td></tr> * <tr><td>/</td><td>changeDir("/testA")</td><td>绝对路径</td><td>/testA/</td></tr> * <tr><td>/testA/testA_B/</td><td>changeDir("/testA")</td><td>绝对路径</td><td>/testA/</td></tr> * </table> * </p> * @param pathName 路径 * @return boolean */ public boolean changeDir(String pathName){ if(pathName == null || pathName.trim().equals("")){ logger.debug("invalid pathName"); return false; } try { channel.cd(pathName.replaceAll("\\\\", "/")); logger.debug("directory successfully changed,current dir=" + channel.pwd()); return true; } catch (SftpException e) { logger.error("failed to change directory",e); return false; } } /** * 切换到上一级目录 * <p> * 使用示例,SFTP服务器上的目录结构如下:/testA/testA_B/ * <table border="1"> * <tr><td>当前目录</td><td>方法</td><td>切换后的目录</td></tr> * <tr><td>/testA/</td><td>changeToParentDir()</td><td>/</td></tr> * <tr><td>/testA/testA_B/</td><td>changeToParentDir()</td><td>/testA/</td></tr> * </table> * </p> * @return boolean */ public boolean changeToParentDir(){ return changeDir(".."); } /** * 切换到根目录 * @return boolean */ public boolean changeToHomeDir(){ String homeDir = null; try { homeDir = channel.getHome(); } catch (SftpException e) { logger.error("can not get home directory",e); return false; } return changeDir(homeDir); } /** * 创建目录 * <p> * 使用示例,SFTP服务器上的目录结构如下:/testA/testA_B/ * <table border="1"> * <tr><td>当前目录</td><td>方法</td><td>参数(绝对路径/相对路径)</td><td>创建成功后的目录</td></tr> * <tr><td>/testA/testA_B/</td><td>makeDir("testA_B_C")</td><td>相对路径</td><td>/testA/testA_B/testA_B_C/</td></tr> * <tr><td>/</td><td>makeDir("/testA/testA_B/testA_B_D")</td><td>绝对路径</td><td>/testA/testA_B/testA_B_D/</td></tr> * </table> * <br/> * <b>注意</b>,当<b>中间目录不存在</b>的情况下,不能够使用绝对路径的方式期望创建中间目录及目标目录。 * 例如makeDir("/testNOEXIST1/testNOEXIST2/testNOEXIST3"),这是错误的。 * </p> * @param dirName 目录 * @return boolean */ public boolean makeDir(String dirName){ try { channel.mkdir(dirName); logger.debug("directory successfully created,dir=" + dirName); return true; } catch (SftpException e) { logger.error("failed to create directory", e); return false; } } /** * 删除文件夹 * @param dirName * @return boolean */ @SuppressWarnings("unchecked") public boolean delDir(String dirName){ if(!changeDir(dirName)){ return false; } Vector<LsEntry> list = null; try { list = channel.ls(channel.pwd()); } catch (SftpException e) { logger.error("can not list directory",e); return false; } for(LsEntry entry : list){ String fileName = entry.getFilename(); if(!fileName.equals(".") && !fileName.equals("..")){ if(entry.getAttrs().isDir()){ delDir(fileName); } else { delFile(fileName); } } } if(!changeToParentDir()){ return false; } try { channel.rmdir(dirName); logger.debug("directory " + dirName + " successfully deleted"); return true; } catch (SftpException e) { logger.error("failed to delete directory " + dirName,e); return false; } } /** * 删除文件 * @param fileName 文件名 * @return boolean */ public boolean delFile(String fileName){ if(fileName == null || fileName.trim().equals("")){ logger.debug("invalid filename"); return false; } try { channel.rm(fileName); logger.debug("file " + fileName + " successfully deleted"); return true; } catch (SftpException e) { logger.error("failed to delete file " + fileName,e); return false; } } /** * 当前目录下文件及文件夹名称列表 * @return String[] */ public String[] ls(){ return list(Filter.ALL); } /** * 指定目录下文件及文件夹名称列表 * @return String[] */ public String[] ls(String pathName){ String currentDir = currentDir(); if(!changeDir(pathName)){ ]; }; String[] result = list(Filter.ALL); if(!changeDir(currentDir)){ ]; } return result; } /** * 当前目录下文件名称列表 * @return String[] */ public String[] lsFiles(){ return list(Filter.FILE); } /** * 指定目录下文件名称列表 * @return String[] */ public String[] lsFiles(String pathName){ String currentDir = currentDir(); if(!changeDir(pathName)){ ]; }; String[] result = list(Filter.FILE); if(!changeDir(currentDir)){ ]; } return result; } /** * 当前目录下文件夹名称列表 * @return String[] */ public String[] lsDirs(){ return list(Filter.DIR); } /** * 指定目录下文件夹名称列表 * @return String[] */ public String[] lsDirs(String pathName){ String currentDir = currentDir(); if(!changeDir(pathName)){ ]; }; String[] result = list(Filter.DIR); if(!changeDir(currentDir)){ ]; } return result; } /** * 当前目录是否存在文件或文件夹 * @param name 名称 * @return boolean */ public boolean exist(String name){ return exist(ls(), name); } /** * 指定目录下,是否存在文件或文件夹 * @param path 目录 * @param name 名称 * @return boolean */ public boolean exist(String path,String name){ return exist(ls(path),name); } /** * 当前目录是否存在文件 * @param name 文件名 * @return boolean */ public boolean existFile(String name){ return exist(lsFiles(),name); } /** * 指定目录下,是否存在文件 * @param path 目录 * @param name 文件名 * @return boolean */ public boolean existFile(String path,String name){ return exist(lsFiles(path), name); } /** * 当前目录是否存在文件夹 * @param name 文件夹名称 * @return boolean */ public boolean existDir(String name){ return exist(lsDirs(), name); } /** * 指定目录下,是否存在文件夹 * @param path 目录 * @param name 文家夹名称 * @return boolean */ public boolean existDir(String path,String name){ return exist(lsDirs(path), name); } /** * 当前工作目录 * @return String */ public String currentDir(){ try { return channel.pwd(); } catch (SftpException e) { logger.error("failed to get current dir",e); return homeDir(); } } /** * 登出 */ public void logout(){ if(channel != null){ channel.quit(); channel.disconnect(); } if(session != null){ session.disconnect(); } logger.debug("logout successfully"); } //------private method ------ /** 枚举,用于过滤文件和文件夹 */ private enum Filter {/** 文件及文件夹 */ ALL ,/** 文件 */ FILE ,/** 文件夹 */ DIR }; /** * 列出当前目录下的文件及文件夹 * @param filter 过滤参数 * @return String[] */ @SuppressWarnings("unchecked") private String[] list(Filter filter){ Vector<LsEntry> list = null; try { //ls方法会返回两个特殊的目录,当前目录(.)和父目录(..) list = channel.ls(channel.pwd()); } catch (SftpException e) { logger.error("can not list directory",e); ]; } List<String> resultList = new ArrayList<String>(); for(LsEntry entry : list){ if(filter(entry, filter)){ resultList.add(entry.getFilename()); } } ]); } /** * 判断是否是否过滤条件 * @param entry LsEntry * @param f 过滤参数 * @return boolean */ private boolean filter(LsEntry entry,Filter f){ if(f.equals(Filter.ALL)){ return !entry.getFilename().equals(".") && !entry.getFilename().equals(".."); } else if(f.equals(Filter.FILE)){ return !entry.getFilename().equals(".") && !entry.getFilename().equals("..") && !entry.getAttrs().isDir(); } else if(f.equals(Filter.DIR)){ return !entry.getFilename().equals(".") && !entry.getFilename().equals("..") && entry.getAttrs().isDir(); } return false; } /** * 根目录 * @return String */ private String homeDir(){ try { return channel.getHome(); } catch (SftpException e) { return "/"; } } /** * 判断字符串是否存在于数组中 * @param strArr 字符串数组 * @param str 字符串 * @return boolean */ private boolean exist(String[] strArr,String str){ ){ return false; } if(str == null || str.trim().equals("")){ return false; } for(String s : strArr){ if(s.equalsIgnoreCase(str)){ return true; } } return false; } }
SFTPUtils工具类及使用的更多相关文章
- Java基础Map接口+Collections工具类
1.Map中我们主要讲两个接口 HashMap 与 LinkedHashMap (1)其中LinkedHashMap是有序的 怎么存怎么取出来 我们讲一下Map的增删改查功能: /* * Ma ...
- Android—关于自定义对话框的工具类
开发中有很多地方会用到自定义对话框,为了避免不必要的城府代码,在此总结出一个工具类. 弹出对话框的地方很多,但是都大同小异,不同无非就是提示内容或者图片不同,下面这个类是将提示内容和图片放到了自定义函 ...
- [转]Java常用工具类集合
转自:http://blog.csdn.net/justdb/article/details/8653166 数据库连接工具类——仅仅获得连接对象 ConnDB.java package com.ut ...
- js常用工具类.
一些js的工具类 复制代码 /** * Created by sevennight on 15-1-31. * js常用工具类 */ /** * 方法作用:[格式化时间] * 使用方法 * 示例: * ...
- Guava库介绍之实用工具类
作者:Jack47 转载请保留作者和原文出处 欢迎关注我的微信公众账号程序员杰克,两边的文章会同步,也可以添加我的RSS订阅源. 本文是我写的Google开源的Java编程库Guava系列之一,主要介 ...
- Java程序员的日常—— Arrays工具类的使用
这个类在日常的开发中,还是非常常用的.今天就总结一下Arrays工具类的常用方法.最常用的就是asList,sort,toStream,equals,copyOf了.另外可以深入学习下Arrays的排 ...
- .net使用正则表达式校验、匹配字符工具类
开发程序离不开数据的校验,这里整理了一些数据的校验.匹配的方法: /// <summary> /// 字符(串)验证.匹配工具类 /// </summary> public c ...
- WebUtils-网络请求工具类
网络请求工具类,大幅代码借鉴aplipay. using System; using System.Collections.Generic; using System.IO; using System ...
- JAVA 日期格式工具类DateUtil.java
DateUtil.java package pers.kangxu.datautils.utils; import java.text.SimpleDateFormat; import java.ut ...
随机推荐
- go的gin框架从请求中获取参数的方法
前言: go语言的gin框架go里面比较好的一个web框架, github的start数超过了18000.可见此框架的可信度 如何获取请求中的参数 假如有这么一个请求: POST /post/te ...
- window下tomcat的内存溢出问题
打开注册表:https://jingyan.baidu.com/article/49ad8bce09d6085835d8fa63.html Tomcat 内存溢出对应解决方式 Windows平台,使用 ...
- .gz解压
1.今天很神奇我遇到这样的压缩包,啧啧啧,好少见的,记录下 gzip -d http_log.gz 这是讲http_log文件解压到当前的路径下
- IDEA项目的复制操作
另一种复制项目的方法 完成
- 在 Python 中使用 JSON
在 Python 中使用 JSON 本教程将会教我们如何使用 Python 编程语言编码和解码 JSON.让我们先来准备环境以便针对 JSON 进行 Python 编程. 环境 在我们使用 Pytho ...
- B: Ocean的游戏(前缀和)
B: Ocean的游戏 Time Limit: 1 s Memory Limit: 128 MB Submit My Status Problem Description 给定一个字符串s, ...
- Ubuntu点击dash home就崩溃
很崩溃的一个问题,搞了好久.并没有很清楚的知道具体哪个细节导致的问题,只是大概知道了原因,以及搞出了一个解决方案. 问题描述 台式机,没有独立显卡,也就是只有一个intel CPU在一起的小破显卡(我 ...
- TFS 生成任务报错:目录不是空的
转到代理目录下,将生成文件夹清空,重新启动生成任务即可
- 提高VS项目的压缩文件大小
对于.NET项目,如果将编译方式由Debug改为Release,使用压缩软件压缩项目文件时可以大大减少压缩文件的大小,具体原因待查.
- 【CF526F】Pudding Monsters
题意: 给你一个排列pi,问你有对少个区间的值域段是连续的. n≤3e5 题解: bzoj3745