如何使用Java将数据附加到SFTP服务器文件中

时间:2019-02-26 11:10:46

标签: java sftp jsch

我尝试了所有可能的方法将一些内容附加到SFTP文件路径中存在的文件中。我收到成功消息,但找不到更新的文件。 不知道是什么原因。

请在下面找到我的代码:

jsch = new JSch();
jsch.addIdentity(privateKey); 
session = jsch.getSession(SFTPUSER, SFTPHOST, SFTPPORT);
session.setConfig("PreferredAuthentications", "publickey,keyboard-interactive,password");
ProxyHTTP  proxy = new ProxyHTTP(PROXY, 8080);
session.setProxy(proxy);

session.setConfig("StrictHostKeyChecking", "no");
session.setConfig("cipher.s2c", "aes128-ctr,aes128-cbc,3des-ctr,3des-cbc,blowfish-cbc,aes192-cbc,aes256-cbc,aes256-ctr");
session.setConfig("cipher.c2s", "aes128-ctr,aes128-cbc,3des-ctr,3des-cbc,blowfish-cbc,aes192-cbc,aes256-cbc,aes256-ctr");
session.connect();

sftpChannel = (ChannelSftp)session.openChannel("sftp");
sftpChannel.connect();
if(sftpChannel.getSession().isConnected())
    logger.debug("Remote session established through the channel");

sftpChannel.cd(remoteDirectory);

List<String> list = new ArrayList<>();

ChannelSftp sftp = (ChannelSftp) sftpChannel;
Vector<LsEntry> files = sftp.ls(remoteDirectory);

for (LsEntry entry : files)
{
    if (!entry.getFilename().equals(".") && !entry.getFilename().equals(".."))
    {
        list.add(entry.getFilename());
    }
}

System.out.println(list);

InputStream stream = sftp.get(remoteDirectory + remoteFile);
try {
    BufferedReader br = new BufferedReader(new InputStreamReader(stream));
    String line;
    while ((line = br.readLine()) != null) {
        System.out.println(line);
    }
    // read from br
} finally {
    stream.close();
}
Files.write(Paths.get(remoteFile), "CH|OK|en,ch,de,it|CH ".getBytes(), StandardOpenOption.APPEND);
System.out.println("added country to remote path");
sftpChannel.exit();
session.disconnect();

1 个答案:

答案 0 :(得分:1)

使用ChannelSftp.put method overloads之一,并将mode参数设置为ChannelSftp.APPEND

例如:

String s = "CH|OK|en,ch,de,it|CH ";

sftp.put(new ByteArrayInputStream(s.getBytes()), remoteFile, ChannelSftp.APPEND);

请注意,您甚至无法远程编写所需的代码。 Files.write写入一个 local 文件,而不是一个 remote 文件。


强制性警告:请勿使用StrictHostKeyChecking=no盲目接受所有主机密钥。那是一个安全漏洞。您失去了针对MITM attacks的保护。

有关正确(且安全)的方法,请参见:
How to resolve Java UnknownHostKey, while using JSch SFTP library?