java使用SFTP连接服务器下载,上传文件
package mocha.framework.util;
/*
* @author Xiehj
* @version 2019年10月28日 上午9:37:28
*/
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import java.util.Vector; import org.apache.log4j.Logger; import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
import com.jcraft.jsch.SftpException; public class SftpTools {
private static final Logger log = Logger.getLogger(SftpTools.class); Session sshSession;
/**
* 链接sftp
*
* @param host
* 主机
* @param port
* 端口
* @param username
* 用户名
* @param password
* 密码
* @return
*/
public ChannelSftp connect(String host, int port, String username,
String password) {
ChannelSftp sftp = null;
try {
JSch jsch = new JSch();
sshSession = jsch.getSession(username, host, port);
//log.info("Session创建成功");
sshSession.setPassword(password);
//log.info("密码输入成功");
//sshSession.setConfig("kex","diffie-hellman-group1-sha1");
Properties sshConfig = new Properties();
sshConfig.put("StrictHostKeyChecking", "no");
//log.info("链接参数设置成功");
sshSession.setConfig(sshConfig);
sshSession.connect();
//log.info("Session已连接");
Channel channel = sshSession.openChannel("sftp");
channel.connect();
sftp = (ChannelSftp) channel;
//log.info("连接到主机" + host);
} catch (Exception e) {
e.printStackTrace();
}
return sftp;
} /**
* 文件重命名
*
* @param directory 目录
* @param oldname 旧文件名
* @param newname 新文件名
* @param sftp
*/
public void renameFile(String directory, String oldname, String newname,
ChannelSftp sftp) {
try {
sftp.cd(directory);
sftp.rename(oldname, newname);
} catch (Exception e) {
e.printStackTrace();
}
} /**
* 文件上传
*
* @param directory 目录
* @param uploadFile 要上传的文件名
* @param sftp
*/
public void upload(String directory, String uploadFile, ChannelSftp sftp) {
try {
sftp.cd(directory);
File file = new File(uploadFile);
sftp.put(new FileInputStream(file), file.getName());
} catch (Exception e) {
e.printStackTrace();
}
} public void uploada(String directory,String sftpFileName,InputStream input, ChannelSftp sftp) throws SftpException{
try {
sftp.cd(directory); } catch (Exception e) {
}
sftp.put(input, sftpFileName);
}
/**
* 将输入流的数据上传到sftp作为文件。文件完整路径=basePath+directory
*
* @param basePath
* 服务器的基础路径
* @param directory
* 上传到该目录
* @param sftpFileName
* sftp端文件名
* @param input
* 输入流 throws SftpException
*/
public boolean upload(String directory, String sftpFileName,
InputStream input, ChannelSftp sftp) {
boolean ret = false;
try {
// sftp.cd(basePath);
sftp.cd(directory);
ret = true;
} catch (SftpException e) {
// 目录不存在,则创建文件夹
String[] dirs = directory.split("/");
String tempPath = "";
for (String dir : dirs) {
if (null == dir || "".equals(dir))
continue;
tempPath+="/"+dir;
//tempPath = dir;
try {
sftp.cd(tempPath);
ret = true;
} catch (SftpException ex) {
try {
sftp.mkdir(tempPath);
sftp.cd(tempPath);
ret = true;
} catch (SftpException e1) {
ret = false;
return ret;
} catch (Exception e1) {
ret = false;
return ret;
}
} catch (Exception e1) {
ret = false;
return ret;
}
}
ret = true;
} catch (Exception e1) {
ret = false;
return ret;
} try {
sftp.put(input, sftpFileName);// 上传文件
ret = true;
} catch (SftpException e) {
ret = false;
}
return ret;
} /**
* 文件下载
*
* @param directory 目录
* @param downloadFile 要下载文件名
* @param saveFile 保持的文件名
* @param sftp
*/
public void download(String directory, String downloadFile,
String saveFile, ChannelSftp sftp) {
try {
sftp.cd(directory);
File file = new File(saveFile);
sftp.get(downloadFile, new FileOutputStream(file));
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 下载文件
* @param directory 下载目录
* @param downloadFile 下载的文件名
* @return 字节数组
*/
public InputStream download(String directory, String downloadFile,ChannelSftp sftp) {
if (directory != null && !"".equals(directory)) {
try {
sftp.cd(directory);
InputStream is = sftp.get(downloadFile);
return is;
} catch (SftpException e) {
e.printStackTrace();
}
}
return null;
} /**
* 文件删除
*
* @param directory 目录
* @param deleteFile 要删除的文件名
* @param sftp
*/
public void delete(String directory, String deleteFile, ChannelSftp sftp) {
try {
sftp.cd(directory);
sftp.rm(deleteFile);
log.info("删除成功");
} catch (Exception e) {
log.info("删除失败");
e.printStackTrace();
}
} /**
* 列出目录下的文件
*
* @param directory 目录
* @param sftp
* @return
* @throws SftpException
*/
public Vector listFiles(String directory, ChannelSftp sftp)
throws SftpException {
return sftp.ls(directory);
} //批量删除文件
public void delete(String directory, String[] fileNames, ChannelSftp aa) {
for (String fileName : fileNames) {
this.delete(directory, fileName, aa);
}
} /**
* 创建目录文件夹
* @param directory 要创建文件夹的位置路径
* @param fileName 要创建文件夹的名称
* @param sftp sftp连接
*/
//创建目录文件
public void mkdir(String directory,String fileName,ChannelSftp sftp){
try {
sftp.cd(directory);
sftp.mkdir(fileName);
log.info("文件夹创建成功");
} catch (Exception e) {
log.info("文件夹创建失败");
e.printStackTrace();
}
} public static void downLoadPic(String path,String downLoadFileName,String newFileName){ SftpTools sftpTools = new SftpTools();
//测试环境地址
String host="10.1.1.105";
int port=22;
String username="weblogic";
String password="1232343";
String directory="/weblogic/wls1036_x64/user_projects/domains/sasdomain/app/zyx_server/images/showpic/";
//建立sftp连接
ChannelSftp content= sftpTools.connect(host, port, username, password);
String saveFile = newFileName;
//下载文件
sftpTools.download(directory, downLoadFileName, saveFile, content); } /**
* 关闭连接 server
*/
public void logout(ChannelSftp sftp){
if (sftp != null) {
if (sftp.isConnected()) {
sftp.disconnect();
// log.info("sftp is closed already");
}
}
if (sshSession != null) {
if (sshSession.isConnected()) {
sshSession.disconnect();
// log.info("sshSession is closed already");
}
}
}
public static void main(String[] args) throws IOException{
SftpTools s = new SftpTools();
String host= "";
//String host= "";
int port= 22;
String username= "";
//String username= "";
String password= "";
//String password= "";
ChannelSftp connect = s.connect(host, port, username, password);
String directory = "/opt/";
//String fileName = "test3.txt";
//s.mkdir(directory, fileName, connect);
// Vector listFiles;
// try {
// listFiles = s.listFiles(directory, connect);
// for (int i = 0; i < listFiles.size(); i++) {
// /*log.info(listFiles.get(i));*/
// System.out.println(listFiles.get(i));
// }
// } catch (SftpException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
InputStream input = s.download(directory, "D_20200902.txt", connect);
File tempFile = new File("F:\\test");
if (!tempFile.exists()) {
tempFile.mkdirs();
}
FileOutputStream out = new FileOutputStream(tempFile.getPath() + File.separator + "D_20200902.txt");
byte[] b = new byte[2048];
int len;
while ((len = input.read(b)) != -1) {
out.write(b, 0, len);
}
System.out.println("文件下载成功");
s.logout(connect);
}
}
以上代码导入后,需要加入一个jsch的jar包
<!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.54</version>
</dependency>
快去试试吧
java使用SFTP连接服务器下载,上传文件的更多相关文章
- golang使用sftp连接服务器远程上传、下载文件
安装github.com/pkg/sftp 我们之前介绍了,golang如何通过ssh连接服务器执行命令,下面我们来如何上传文件,上传文件同样需要之前的ssh,但是除此之外还需要一个模块,直接使用go ...
- 从Linux服务器下载上传文件
首先要确定好哪两种的连接:Linux常用的有centors和unbantu两种版本,PC端Mac和Windows 如果在两个Linux之间传输,或Linux和Mac之间传输可以使用scp命令,类似于s ...
- https 协议下服务器根据网络地址下载上传文件问题
https 协议下服务器根据网络地址下载上传文件遇到(PKIX:unable to find valid certification path to requested target 的问题) 使用h ...
- Centos 6.4下使用VSFTPD无法正常连接与无法上传文件的问题解决
发表于 2014 年 4 月 13 日 作者 SCKA 最近利用Linux搭建服务器 搭建FTP的时候决定使用VSFTP搭建,结果却出现了无法正常连接与无法上传文件等诸多问题 经过许久的努力,终于让V ...
- 2.3 利用FTP服务器下载和上传文件
二.利用FTP服务器的下载文件 from ftplib import FTP from os.path import exists def getfile(file,site,dir,user=(), ...
- 使用root用户登录到AWS EC2服务器,上传文件到/var/www目录
关键词 1.aws ec2中上传文件到/var/www目录(使用filezilla) 2.使用root用户登录aws ec2实例 上一篇随笔中记录了在aws ec2实例中部署apache服务器的过程, ...
- git下载/上传文件提示:git did not exit cleanly
问题:git操作下载/上传文件,提示信息如下 TortoiseGit-git did not exit cleanly (exit code 1) TortoiseGit-git did not ex ...
- java:ssh连接服务器,实现本地文件上传和下载
1.连接至服务器:ssh hp@10.10.17.16 -p 5555 下载文件:scp -r hp@10.10.17.16:/ccc(服务器路径,文件夹下所有文件) /path(本地路径) ...
- python中使用paramiko模块并实现远程连接服务器执行上传下载
paramiko模块 paramiko是用python语言写的一个模块,遵循SSH2协议,支持以加密和认证的方式,进行远程服务器的连接. 因此,如果需要使用SSH从一个平台连接到另外一个平台,进行一系 ...
- ASP.NET、JAVA跨服务器远程上传文件(图片)的相关解决方案整合
一.图片提交例: A端--提交图片 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { string u ...
随机推荐
- 【深度学习】【图像分类网络】(二)VisionTransformer
Transformer简介 
题目 : 代码: #直线 M=[[x,y] for x in range(20) for y in range(21)] #创建二维列表:代表xy坐标系 d=set() #创建集合属性的容器:因为集合 ...
- 绝对强大的三大linux指令:ar, nm, objdump
前言 如果普通编程不需要了解这些东西,如果想精确控制你的对象文件的格式或者你想查看一下文件对象里的内容以便作出某种判断,刚你可以看一下下面的工具:objdump, nm, ar.当然,本文不可能非常详 ...
- Word中使用ChatGPT,写文档如有神助
[部署教程]国内网络可用,最强 ChatGPT 学术论文写作工具原创****付费 简介 Word GPT Plus 是一个集成了 chatGPT 模型的 Word 插件.它允许你基于你在文档中写的内容 ...
- Azure DevOps(三)Azure Pipeline 自动化将程序包上传到 Azure Bolb Storage
一,引言 结合前几篇文章,我们了解到 Azure Pipeline 完美的解决了持续集成,自动编译.同时也兼顾了 Sonarqube 作为代码扫描工具.接下来另外一个问题出现了,Azure DevOp ...
- Vue3项目的打包运行
一.项目打包(vite创建的项目) 执行以下这条命令对项目进行打包 npm run build 生成dist文件夹,进入dist文件夹下的index.html文件,然后右键选择Open with Li ...
- 2023-04-06:拥抱Golang,优化FFmpeg音频编码器,探究encode_audio.c的内部结构。
2023-04-06:拥抱Golang,优化FFmpeg音频编码器,探究encode_audio.c的内部结构. 答案2023-04-06: 见moonfdd/ffmpeg-go库. 这段代码是一个示 ...
- 2022-11-19:第二高的薪水。表结构和数据的sql语句如下,输出200,因为200是第二大的。请问sql语句如何写? DROP TABLE IF EXISTS `employee`; CREAT
2022-11-19:第二高的薪水.表结构和数据的sql语句如下,输出200,因为200是第二大的.请问sql语句如何写? DROP TABLE IF EXISTS `employee`; CREAT ...
- 2022-08-12:方案1 : {7, 10}; xxxx : {a , b}; 1 2 3 4; FunnyGoal = 100; OffenseGoal = 130。 找到一个最少方案数,让Fu
2022-08-12:方案1 : {7, 10}: xxxx : {a , b}: 1 2 3 4: FunnyGoal = 100: OffenseGoal = 130. 找到一个最少方案数,让Fu ...