I'm trying to upload images to a FTP server (on my local PC) from Android Phone (HTC Desire HD). Images are going to FTP server but they are corrupted.

And the method (ftpClient.storeFile()) throws IOException (Bad File Number)

Please help me.

This is the corrupted image link:

http://imageshack.us/photo/my-images/820/komikb.jpg/

And this is the code:

FTPClient ftpClient = new FTPClient();
    try {
        ftpClient.connect("192.168.2.14");
        ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
        ftpClient.setFileTransferMode(FTP.BINARY_FILE_TYPE);
        ftpClient.setSoTimeout(10000);
        ftpClient.enterLocalPassiveMode();
        if(ftpClient.login("Administrator", "xxxx"))
        {
            File sFile=new File("mnt/sdcard/DCIM/komik.jpg");
            FileInputStream fs= new FileInputStream(sFile);
            String fileName = sFile.getName();
            Boolean result = ftpClient.storeFile("/ftpfile.atspace.co.uk/" + fileName, fs);
            String has = "";
        }
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
link|improve this question
I'd say it got shortened by a number of bytes, not really corrupted. – fvu May 31 '11 at 21:03
+1 for the excellent circle on the (otherwise lovely) hydrangea. – sarnold May 31 '11 at 21:04
1  
there is no if the file is image. But if the file type is audio, audio file didn't play. – osman n. May 31 '11 at 21:07
1  
could it be that you got bitten by issues.apache.org/jira/browse/NET-409 ? – fvu May 31 '11 at 21:11
1  
@osman: Please explain how the problem was solved. It might help others with the same problem. You can do this by adding an answer yourself explaining what the issue was. – MisterSquonk May 31 '11 at 22:22
show 4 more comments
feedback

1 Answer

up vote 1 down vote accepted

Problem is solved. FTPClient class has "last packet data loss bug". But this was solved with 3.0.1 23.05.2011 release.

You can see from detailed explanation about bug: https://issues.apache.org/jira/browse/NET-409

You can download fixed relea https://repository.apache.org/content/repositories/snapshots/commons-net/commons-net/3.0.1-SNAPSHOT/

link|improve this answer
Hi osman i am using 3.0.1 with the code you have written above but it is not working for me. The image is getting uploaded but corrupted . png image not even displaying . Can you plz guide me??..Thanks – Sujit Jun 1 '11 at 13:43
Hi sujit, apache FTPClient has lots of bugs. This problem was solved. Another problems appeared later and I start using ftp4j. This is the link: sauronsoftware.it/projects/ftp4j I suggest you to use this component. – osman n. Jun 6 '11 at 20:07
are you sure that this ftp4j not raise problem? – Dr.nik Nov 15 '11 at 9:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.