sftp作为临时的文件存储位置,在某些场合还是有其应景的,比如对账文件存放。需要提供一个上传的工具类。实现方法参考下:

pom.xml中引入类库:

        <dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.54</version>
</dependency>

sftp工具类和使用命令行是一样的操作方法,上传下载如下:

public class SftpUploadTest {

    private ChannelSftp sftp = null;

    private Session sshSession = null;

    private String username;

    private String password;

    private String host;

    private int port;

    public SftpUploadTest(String username, String password, String host, int port) {
this.username = username;
this.password = password;
this.host = host;
this.port = port;
} /**
* 连接sftp服务器
*
* @return ChannelSftp sftp连接实例
*/
public ChannelSftp connect() {
info("-->sftp连接开始>>>>>> " + host + ":" + port + " >>>username=" + username);
JSch jsch = new JSch();
try {
jsch.getSession(username, host, port);
sshSession = jsch.getSession(username, host, port);
sshSession.setPassword(password);
Properties properties = new Properties();
properties.put("StrictHostKeyChecking", "no");
sshSession.setConfig(properties);
sshSession.connect();
Channel channel = sshSession.openChannel("sftp");
channel.connect();
sftp = (ChannelSftp) channel;
info(" ftp Connected to " + host + ":" + port);
} catch (JSchException e) {
throw new RuntimeException("sftp连接失败", e);
}
return sftp;
} /**
* 下载单个文件,如果指定文件名,则下载到文件名否则保持原有文件名
*
* @param remoteFilePath 远程文件路径 /tmp/xxx.txt || xxx.txt.zip
* @param localFilePath 本地文件路径 如 D:\\xxx.txt
* @return 下载的文件
*/
public File downloadFile(String remoteFilePath, String localFilePath) {
info(">>>>>>>>>downloadFile--ftp下载文件" + remoteFilePath + "开始>>>>>>>>>>>>>");
connect();
String remoteFileName = "";
// 远端目录确定以 / 作为目录格式
String rFileSeparator = "/";
int rDirNameSepIndex = remoteFilePath.lastIndexOf(rFileSeparator) + 1;
String rDir = remoteFilePath.substring(0, rDirNameSepIndex);
remoteFileName = remoteFilePath.substring(rDirNameSepIndex);
if(localFilePath.endsWith(File.separator)) {
localFilePath = localFilePath + (localFilePath.endsWith(File.separator) ? remoteFileName : "/" + remoteFileName);
}
File file = null;
OutputStream output = null;
try {
file = new File(localFilePath);
if (file.exists()) {
file.delete();
}
file.createNewFile();
sftp.cd(rDir);
output = new FileOutputStream(file);
sftp.get(remoteFileName, output);
info("===DownloadFile:" + remoteFileName + " success from sftp.");
} catch (SftpException e) {
error("ftp下载文件失败", e);
} catch (FileNotFoundException e) {
error("本地目录异常,请检查" + file.getPath(), e);
} catch (IOException e) {
error("创建本地文件失败" + file.getPath(), e);
} finally {
if (output != null) {
try {
output.close();
} catch (IOException e) {
e.printStackTrace();
}
}
disconnect();
} info(">>>>>>>>>downloadFile--ftp下载文件结束>>>>>>>>>>>>>");
return file;
} /**
* 上传单个文件,如果指正下载文件名则使用,否则保留原有文件名
*
* @param remoteFilePath 远程文件路径 /tmp/xxx.txt ||xxx.txt.zip
* @param uploadFilePath 要上传的文件 如:D:\\test\\xxx.txt
*/
public void uploadFile(String remoteFilePath, String uploadFilePath) {
info(" begin uploadFile from:" + uploadFilePath +
", to: " + remoteFilePath);
FileInputStream in = null;
connect();
String remoteFileName = "";
String remoteDir = remoteFilePath;
String localFileName = "";
// 远端目录确定以 / 作为目录格式
String rFileSeparator = "/";
if(remoteFilePath.endsWith(rFileSeparator)) {
localFileName = uploadFilePath.substring(uploadFilePath.lastIndexOf(File.separator) + 1);
remoteFileName = localFileName;
} else {
int fileNameDirSep = remoteFilePath.lastIndexOf(rFileSeparator) + 1;
remoteDir = remoteFilePath.substring(0, fileNameDirSep);
remoteFileName = remoteFilePath.substring(fileNameDirSep);
}
try {
sftp.cd(remoteDir);
} catch (SftpException e) {
try {
sftp.mkdir(remoteDir);
sftp.cd(remoteDir);
} catch (SftpException e1) {
error("ftp创建文件路径失败,路径为" + remoteDir);
throw new RuntimeException("ftp创建文件路径失败" + remoteDir);
}
}
File file = new File(uploadFilePath);
try {
in = new FileInputStream(file);
sftp.put(in, remoteFileName);
} catch (FileNotFoundException e) {
error("文件不存在-->" + uploadFilePath);
} catch (SftpException e) {
error("sftp异常-->", e);
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
info("Close stream error." + e.getMessage());
}
}
disconnect();
}
info(">>>>>>>>>uploadFile--ftp上传文件结束>>>>>>>>>>>>>");
} /**
* 关闭连接
*/
public void disconnect() {
if (this.sftp != null) {
if (this.sftp.isConnected()) {
this.sftp.disconnect();
this.sftp = null;
info("sftp 连接已关闭!");
}
}
if (this.sshSession != null) {
if (this.sshSession.isConnected()) {
this.sshSession.disconnect();
this.sshSession = null;
info("sshSession 连接已关闭!");
}
}
}
private void info(String msg) {
System.out.println("info: " + msg);
} private void error(String msg) {
error(msg, null);
} private void error(String msg, Throwable e) {
System.out.println("error: " + msg);
if(e != null) {
e.printStackTrace();
}
} public static void main(String[] args) throws Exception {
SftpUploadTest uploadTest = new SftpUploadTest("root", "123", "10.40.10.17", 52766);
uploadTest.uploadFile("/tmp/" + "readme-" + System.currentTimeMillis() + ".txt", "C:\\Users\\xx\\Desktop\\sample\\readme.txt");
uploadTest.downloadFile("/tmp/readme.txt", "C:\\Users\\xx\\Desktop\\sample\\readme-" + System.currentTimeMillis() + ".txt");
}
}

  使用时,可根据需要进行连接的适时释放!也可能为了安全需要,添加一些额外的安全指令!

  sftp文件操作的命令罗列如下参考:

sftp常用的为上传下载

# get
# 从远程服务器上下载一个文件存放到本地,如下:
# 先通过lcd切换到本地那个目录下,然后通过get file
>> lcd d:\ #表示切换到本地的d盘下
>> get ./test.sql   #这样就将当前文件下载本地的d盘下
# put
# 是将本地的文件上传到远程服务器上,如下:
>> put #在windows下弹出选择文件的窗口
# lcd
# 先通过lcd切换到本地那个目录下
>> lcd c:\ #表示切换到本地的c盘下
# lls
#显示当前目录下的所有文件
>> pwd #显示当前目录

java实操之使用jcraft进行sftp上传下载文件的更多相关文章

  1. SFTP上传下载文件、文件夹常用操作

    SFTP上传下载文件.文件夹常用操作 1.查看上传下载目录lpwd 2.改变上传和下载的目录(例如D盘):lcd  d:/ 3.查看当前路径pwd 4.下载文件(例如我要将服务器上tomcat的日志文 ...

  2. Java Sftp上传下载文件

    需要使用jar包  jsch-0.1.50.jar sftp上传下载实现类 package com.bstek.transit.sftp; import java.io.File; import ja ...

  3. curl实现SFTP上传下载文件

    摘自:https://blog.csdn.net/swj9099/article/details/85292444 #include <stdio.h> #include <stdl ...

  4. THINKPHP 3.2 PHP SFTP上传下载 代码实现方法

     一.SFTP介绍:使用SSH协议进行FTP传输的协议叫SFTP(安全文件传输)Sftp和Ftp都是文件传输协议.区别:sftp是ssh内含的协议(ssh是加密的telnet协议),  只要sshd服 ...

  5. java:工具(汉语转拼音,压缩包,EXCEL,JFrame窗口和文件选择器,SFTP上传下载,FTP工具类,SSH)

    1.汉语转拼音: import net.sourceforge.pinyin4j.PinyinHelper; import net.sourceforge.pinyin4j.format.HanyuP ...

  6. Xshell5下利用sftp上传下载传输文件

    sftp是Secure File Transfer Protocol的缩写,安全文件传送协议.可以为传输文件提供一种安全的加密方法.sftp 与 ftp 有着几乎一样的语法和功能.SFTP 为 SSH ...

  7. SFTP远程连接服务器上传下载文件-qt4.8.0-vs2010编译器-项目实例

    本项目仅测试远程连接服务器,支持上传,下载文件,更多功能开发请看API自行开发. 环境:win7系统,Qt4.8.0版本,vs2010编译器 qt4.8.0-vs2010编译器项目实例下载地址:CSD ...

  8. java web service 上传下载文件

    1.新建动态web工程youmeFileServer,新建包com,里面新建类FileProgress package com; import java.io.FileInputStream; imp ...

  9. 【转】Java IOUtils方式上传下载文件 on HDFS

    [From]https://www.cnblogs.com/areyouready/p/9795442.html package com.css.hdfs04; import java.io.File ...

随机推荐

  1. spring boot自定义线程池以及异步处理

    spring boot自定义线程池以及异步处理@Async:什么是线程池?线程池是一种多线程处理形式,处理过程中将任务添加到队列,然后在创建线程后自动启动这些任务.线程池线程都是后台线程.每个线程都使 ...

  2. python基础中的四大天王-增-删-改-查

    列表-list-[] 输入内存储存容器 发生改变通常直接变化,让我们看看下面列子 增---默认在最后添加 #append()--括号中可以是数字,可以是字符串,可以是元祖,可以是集合,可以是字典 #l ...

  3. Saliency Detection: A Spectral Residual Approach

    Saliency Detection: A Spectral Residual Approach 题目:Saliency Detection: A Spectral Residual Approach ...

  4. CentOS6系统编译部署LAMP(Linux, Apache, MySQL, PHP)环境

    我们一般常规的在Linux服务器中配置WEB系统会用到哪种WEB引擎呢?Apache还是比较常用的引擎之一.所以,我们在服务器中配置LAMP(Linux, Apache, MySQL, PHP)是我们 ...

  5. 201771010134杨其菊《面向对象程序设计(java)》第十六周学习总结

    第十六周学习总结 第一部分:理论知识 1. 程序是一段静态的代码,它是应用程序执行的蓝本.进程是程序的一次动态执行,它对应了从代码加载.执行至执行完毕的一个完整过程.操作系统为每个进程分配一段独立的内 ...

  6. Finance财务软件(引入业务系统凭证专题)

    我们通过自定义存储过程从业务系统引入凭证 我们需要以下适配 1.设置业务系统数据库链接 2.在自定义模板中设置存储过程名称及入参,这里的功能键值必须为_InterfaceExec,保留字段作为存储过程 ...

  7. O365 Manager Plus帮助台委派功能一览表

    O365 Manager Plus帮助台委派介绍 虽然Office 365允许您在全球任何地方工作,但它提供的管理功能十分不足.当一个组织分布在多个国家/地区时,一个管理员很难单独管理所有用户和邮箱. ...

  8. gson的特殊用法

    1.gson包在处理 字符串转 Map 或者 List 的方法. List memberList = gson.fromJson(str,new TypeToken<List>() {}. ...

  9. Maven捆绑TestNG实现测试自动化执行、部署和调度

    一. 需求介绍 自动化测试,尤其是接口测试时,要写大量的测试用例,这些测试用例我们当然首选使用TesteNG编写,用例数量大,还涉及各种依赖包之类的问题,因此用Maven管理也是最方便最易实现的. 面 ...

  10. LOJ-10094(强连通分量)

    题目链接:传送门 思路: 先缩点,然后统计入度为0的点即可. #include<iostream> #include<cstdio> #include<cstring&g ...