-1
私はFTPの初心者です。ファイル転送中に問題に直面しています。 FTPサーバーへのファイル転送が行われていて、ファイルが自動的に転送されると、ファイルはFTPサーバーから削除されます。FTPサーバーでファイルを表示する方法
String newfilename;
FTPClient ftpClient = new FTPClient();
FileInputStream fis = null;
/*
written few set of statement for fetching file name and storing filename in **newfilename** variable and storing the file in **fis(FileInputStream).**
*/
System.out.println("posting file "+newfilename);
/*
**ftpClient** is entered in working directory, I mean FTP server directory.
*/
if(newfilename.startsWith("CAP1"))
{
ftpClient.storeFile(newfilename, fis);
record1[0].setAddr1(newfilename); //storing filename in respective column of DB
}
else if(newfilename.startsWith("CAP2"))
{
ftpClient.storeFile(newfilename, fis);
record1[0].setAddr2(newfilename); //storing filename in respective column of DB
}
else if(newfilename.startsWith("CAP3"))
{
ftpClient.storeFile(newfilename, fis);
record1[0].setAddr3(newfilename); //storing filename in respective column of DB
}
誰もが提案しているので、私はこれで何をする必要がありますか?
私は質問を理解していませんが、期待どおりに動作するようにfilezillaのようなftpクライアントでFTPサーバーを試してみましたか? –
あなたは、アップロードが進行中にサーバー内のファイルを見ることができますが、一度終了すると、ファイルは消えますか?私の理解が正しいならば、それをどうやって正確にチェックするのですか? –
はいマーティンは絶対に正しいです。私はDBに格納されているログとデータごとにチェックしています。 – Kamal