SFTP连接、创建多级目录、传文件

SFTP连接、创建多级目录、传文件


通过FTP或SFTP传输指定格式的数据文件也是常见的需求,本文简单介绍一下常用的SFTP方法,另外需要注意的是,文中涉及的代码全都是在SpringBoot 服务中运行的。

SFTP连接

首先,需要导入依赖

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

创建SFTP连接

public class SftpUtil{
   

	@Value("host")
	private String host;
	@Value("port")
	private String port;
	@Value("userName")
	private String userName;
	@Value("passWord")
	private String passWord;
	@Value("filePath")
	private String filePath;
	@Value("folder")
	private String folder;
	/**
	 
以下是使用Java SFTP创建多级目录的示例代码: ```java import com.jcraft.jsch.ChannelSftp; import com.jcraft.jsch.JSch; import com.jcraft.jsch.Session; public class SftpCreateDirectories { public static void main(String[] args) { String host = "your_sftp_host"; int port = 22; String username = "your_username"; String password = "your_password"; String remoteDirectory = "/path/to/remote/directory"; try { JSch jsch = new JSch(); Session session = jsch.getSession(username, host, port); session.setPassword(password); session.setConfig("StrictHostKeyChecking", "no"); session.connect(); ChannelSftp channelSftp = (ChannelSftp) session.openChannel("sftp"); channelSftp.connect(); // 创建多级目录 String[] directories = remoteDirectory.split("/"); for (String directory : directories) { if (!directory.isEmpty()) { try { channelSftp.cd(directory); } catch (Exception e) { channelSftp.mkdir(directory); channelSftp.cd(directory); } } } channelSftp.disconnect(); session.disconnect(); } catch (Exception e) { e.printStackTrace(); } } } ``` 请注意,上述代码使用了JSch库来进行SFTP操作,因此您需要在项目中添加相应的依赖。您可以在pom.xml文件中添加以下依赖: ```xml <!-- JSch --> <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.55</version> </dependency> ``` 请将上述代码中的"your_sftp_host"、"your_username"、"your_password"和"/path/to/remote/directory"替换为实际的SFTP主机、用户名、密码和要创建多级目录路径。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值