I'm trying to transfer a file from my Java application to an FTP server the program works, the file is transferred, but when I go to open in the FTO folder, the file is corrupted, I think that packets are lost during the file transfer. Why? And how can I fix this?
Another question, how can I stop the while if I want to stop the file upload?
Thanks everybody!
The code inside my class:
FTPClient client = new FTPClient();
InputStream is = null;
//...
try{
client.connect(MY_FTP_URL);
client.login(USER, PASS);
InputStream is = new FileInputStream(file_path);
OutputStream os = client.storeFileStream(file_name);
byte[] buffer = new byte[1024];
int len;
//I use this way to check the transfer progress
while((len = is.read(buffer)) != -1){
os.write(buffer, 0, len);
os.flush();
}
os.close();
} catch (IOException e){
e.printStackTrace();
} finally{
try{
if(is != null){
is.close();
}
client.disconnect();
} catch(IOException e){
e.printStackTrace();
}
}