1
當我嘗試將文件複製到ftp服務器時,出現550文件名無效錯誤。它正在連接並登錄。550 ftp期間的文件名無效錯誤
ftp.connect(server);
ftp.login(user, password);
String filename = "testing.txt";
fis = new FileInputStream(filename);
File file = new File(filename);
FileInputStream fis = new FileInputStream(file);
String cwd =client.printWorkingDirectory();
boolean check = ftp.storeFile("C:\\test\\"+filename, fis);
if(!check)System.out.println(ftp.getReplyString());
有誰能告訴我我哪裏出錯了嗎?
謝謝
我認爲它只是一個文件權限的情況。
[vsftpd可能重複 - 無法將文件上傳到服務器。錯誤553](http://stackoverflow.com/questions/18749681/vsftpd-cannot-upload-files-to-the-server-error-553) – tripleee 2017-03-23 06:13:39