I'm trying to do a VERY simple file upload. I want a Java FTPClient that can upload any file I tell it to. But the pdf always gets all messed up and my pdf editor (Adobe) won't open it, saying there is an I/O error.

I'm using the following class:

    import org.apache.commons.net.ftp.FTPClient;
    ....

    FTPClient client = new FTPClient();
    FileInputStream fis = null;

    try {
        client.connect("mydomain.com");
        client.login("user", "password");

        String filename = "myPDF.pdf";
        fis = new FileInputStream(filename);

        client.storeFile("temp.pdf", fis);
        fis.close();
        client.logout();
    } catch (IOException e) {
        e.printStackTrace();
    }

Why doesn't this work, and how do I fix it?

link|improve this question

Did you try the answers in your question from half an hour ago? stackoverflow.com/questions/5925438/… – Aleadam May 8 '11 at 4:47
yup, I'm using an FTPClient now. The question is completely different. – CodeGuy May 8 '11 at 4:51
feedback

6 Answers

up vote 1 down vote accepted

It doesn't work because the default transfer mode for FTPClient is FTP.ASCII_FILE_TYPE. You just need to update the configuration to transfer in binary mode.

link|improve this answer
feedback

It's often forgotten that FTP has two modes of operation - one for text files and the other for binary (image) files. In the good old days, connecting from a command line ftp client, we'd carefully remember to set the transfer mode before requesting a file - or we'd run into exactly the sort of problem you seem to be having. Today a lot of situations seem to default to binary, but not apparently yours.

You probably need to tell your ftp implementation to transfer in binary/image mode.

link|improve this answer
feedback

Try to use BufferedInputStream, this is a (working) code sample:

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(f));
res = client.storeFile("File Name", bis);
bis.close();
client.logout();
link|improve this answer
still gets corrupted. :/ – CodeGuy May 8 '11 at 4:40
Two short questions - have you tried to open the file on the client machine? have you tried sending a different file? – Binyamin Sharet May 8 '11 at 4:44
yes, other files are fine. and what do you mean open it on the client machine? basically, after I upload it, I download it to my local machine. it's an ftp on a website I own. – CodeGuy May 8 '11 at 4:47
did you have any success opening the file before uploading it? maybe you have a problem in the download mechanism? --I'm not sure about those, just trying to help :S – Binyamin Sharet May 8 '11 at 4:51
1  
yeah. the original file is just fine. ugh I'm not sure why it doesn't work. It works fine for other files I've tried like txt files. something special about pdfs. – CodeGuy May 8 '11 at 4:53
show 1 more comment
feedback

From documentation

This method does NOT close the given InputStream.

So close the FileInputStream before calling logout()

link|improve this answer
+1 I gave an alternative, but you pointed out the issue. – Binyamin Sharet May 8 '11 at 4:30
it still gets corrupted :/ – CodeGuy May 8 '11 at 4:42
@reising1 I'm not sure then, Did you try @MByd's suggestion ? – Bala R May 8 '11 at 4:44
yeah, I tried his suggestion. – CodeGuy May 8 '11 at 4:47
feedback

This looks like a bug in the Commons NET library, which affected version 3.0. Try a newer version (3.0.1), which fixed the bug.

link|improve this answer
feedback

Add this to your file

ftp.setFileType(FTP.BINARY_FILE_TYPE, FTP.BINARY_FILE_TYPE);
ftp.setFileTransferMode(FTP.BINARY_FILE_TYPE);

I had the same problem with xlsx files and this was a good solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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