I have three different sizes of files in my ftp location with 2KB, 76KB and 216MB. I have to process these files one by one, I am able to retrieve the first two files easily using the retrieveFileStream(FILE_NAME_HERE) but when it comes to process the third file, it takes forever (my application keeps hanging) with no results. I have to get the files as input stream and make jaxb object out of them later. This is the utility method which I am using to get the input stream:

public InputStream convertToInputStream(FTPFile file) throws IOException{
        if(file!=null){
            InputStream is=ftp.retrieveFileStream(file.getName());

            ftp.completePendingCommand();
            return is;

        }

        return null;

Can you please point what I am doing wrong here?

link|improve this question
What are you doing with the InputStream? Writing to hard drive? Or keep all the stuff in memory? Tried -Xmx jvm option to increase heap size? And in which line of code does it "hang"? – Fabian Barney Aug 30 '11 at 17:31
I have to keep it in memory to Unmarshal it first, and if the unmarshalling is successful then I have to store that stream(in the form of file) in a network drive, I cannot just store it first because if I am not able to process that input stream file, I should not be saving it. That's the requirement. It fails at ftp.completePendingCommand(); I put the sysout command right before and after InputStream is=ftp.retrieveFileStream(file.getName()); and I can see both sysouts being written but it just does not move forward in case of bigger files for completePendingCommand. – Sameer Aug 30 '11 at 22:29
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.