So I am trying to download an image file from an FTP site, get some meta data from it, and then return the binary data to a web page using the Play! Framework. Here is the basic code i am using inside a controller action (removed all the error checking for brevity):
FTPClient ftp = new FTPClient();
ftp.connect(site.host, site.port);
ftp.login(site.username, site.password);
InputStream is = ftp.retrieveFileStream("somefile.png");
Response.current().contentType = "image/png";
renderBinary(is);
I know that the true type of the input stream is a SocketInputStream, is there something special i need to do to be able to use that?
I also tried this:
BufferedImage bimg = ImageIO.read(is);
but 'bimg' comes out as null, so this leads me to believe that the data from the input stream is not valid image data.
Does anyone have any experience doing this and can point me in the right direction?