Java上传单个图片到Linux服务器某个文件夹
时间: 2023-09-21 07:08:29 浏览: 203
可以使用Java中的JSch和SCP实现上传单个图片到Linux服务器某个文件夹。以下是一个示例代码:
```
import com.jcraft.jsch.*;
import java.io.File;
import java.io.FileInputStream;
import java.util.Properties;
public class UploadImage {
public static void main(String[] args) {
String localFilePath = "/path/to/local/image.jpg"; // 本地图片文件路径
String remoteFilePath = "/path/to/remote/folder/image.jpg"; // 远程Linux服务器文件路径
String username = "your_username"; // Linux服务器用户名
String password = "your_password"; // Linux服务器密码
String host = "your_linux_server_host"; // Linux服务器IP地址
JSch jsch = new JSch();
Session session = null;
Channel channel = null;
try {
session = jsch.getSession(username, host, 22);
session.setPassword(password);
Properties config = new Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
session.connect();
channel = session.openChannel("sftp");
channel.connect();
ChannelSftp sftp = (ChannelSftp) channel;
FileInputStream fis = new FileInputStream(new File(localFilePath));
sftp.put(fis, remoteFilePath);
fis.close();
sftp.disconnect();
channel.disconnect();
session.disconnect();
System.out.println("上传完成");
} catch (JSchException | SftpException | java.io.IOException e) {
e.printStackTrace();
}
}
}
```
首先需要引入JSch的jar包,可以从官网下载。然后根据实际情况修改代码中的本地图片文件路径、远程Linux服务器文件路径、Linux服务器用户名、密码、IP地址等信息。运行代码后,程序会将本地图片上传到远程Linux服务器的指定文件夹中。
阅读全文