0
我想從手機發送文件到電腦,但它給出了一個錯誤(沒有這樣的文件),但我沒有解決這個問題?problem.What的問題我使用SFTP server.Code:我想從手機發送(上傳)文件到電腦,但它給出了錯誤
ChannelSftp sftpChannel = (ChannelSftp) channel;
try {
sftpChannel.cd("/sdcard/download");
String inputFileName =Environment.getExternalStorageDirectory().getAbsolutePath()+"a.txt";
sftpChannel.put(inputFileName, "/home/john/desktop");
} catch (SftpException e) {
writeToSDFile("sftp---exception"+e);
}
sftpChannel.exit();