问题
Once the program is connected to the server using the FTPClient connect() method, how can I send Strings and append them to a file located in the remote machine?
I have read other posts but they don't use Apache Commons Net library.
回答1:
From the docs (you did check the docs, right?), you need the appendFile() method on the FTP client.
Something like
String text = "...."
String remoteFileName = "..."
FTPClient ftp = ... // Already connected
try (ByteArrayInputStream local = new ByteArrayInputStream(text.toBytes("UTF-8"))) {
ftp.appendFile(remoteFilename, local);
} catch (IOException ex) {
throw new RuntimeException("Uh-oh", ex);
}
来源:https://stackoverflow.com/questions/36266728/how-can-i-write-to-a-remote-file-using-apache-commons-net