所以我正在使用 Java 通过 FTP 将文件上传到我的 VPS(Linux Centos 5 64 位)。我用来上传到我的 VPS 的代码是
FTPClient client = new FTPClient();
FileInputStream fis = null;
try {
client.connect(serverip);
client.login("user, pass);
client.setFileType(FTPClient.BINARY_FILE_TYPE);
// Create an InputStream of the file to be uploaded
String filename = Shared.saveLocation + Shared.saveAs;
fis = new FileInputStream(filename);
// Store file to server
client.storeFile(Shared.saveAs, fis);
client.logout();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fis != null) {
fis.close();
}
client.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
}
现在代码正在运行,但我想要更改它在 VPS 上将文件上传到的位置。现在是
服务器ip/这里
我有一些文件,所以想将其更改为
服务器ip/文件/这里
我该怎么做呢?