3

修改后是否可以将 Properties 转换为 InputStream。

这里有一些代码来澄清这个问题:

sftpConnection = new connectSFTP(host, user, pass, port);
Properties ssProperties = new Properties();
InputStream in = null;
try{
    in = sftpConnection.download(fileName, fileDirectory);
    ssProperties.load(in);
    //System.out.println("File Found");
    ssProperties.setProperty(key, value);
    sftpConnection.upload(<<Need the new InputStream here>>, fileDirectory);
    in.close();     
}
catch(Exception ex)
{
System.out.println("File Not Found"); 
} 
4

1 回答 1

12

当然 - 最简单的方法是创建一个ByteArrayOutputStream,保存到其中,然后ByteArrayInputStream围绕结果创建一个:

ByteArrayOutputStream output = new ByteArrayOutputStream();
ssProperties.store(output, null);
ByteArrayInputStream input = new ByteArrayInputStream(output.toByteArray());
sftpConnection.upload(input, fileDirectory);
于 2012-08-09T20:25:20.987 回答