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?
ftp.completePendingCommand();I put the sysout command right before and afterInputStream 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 forcompletePendingCommand. – Sameer Aug 30 '11 at 22:29