我需要上傳SCP文件。我在stackoverflow上找到這個庫http://code.google.com/p/commons-net-ssh/ 我下載.jar並添加到BuildPath,但是如何添加用戶名和密碼到這個? 我試過這個,但它不起作用。如果你有其他圖書館這樣做,它會沒事的。任何幫助?SCP上傳文件問題
SSHClient ssh = new SSHClient();
//ssh.useCompression();
ssh.loadKnownHosts();
ssh.connect("localhost");
try {
ssh.authPublickey(System.getProperty("user.name"));
new SCPDownloadClient(ssh).copy("ten", "/tmp");
} finally {
ssh.disconnect();
}