BLOB « IceFaces « JSF Q&A





1. BLOB picture    icefaces.org

2. Blob Files with InputFIle    icefaces.org

4. output blob files (.doc, .pdf...) from the Database    icefaces.org

Hi, I want to display blob file from de DB to the browser, but when I click on the link of the document I want to open, nothing append. I tried to do the same in an application where I don't use IceFaces and it work fine. What could be wrong, do I have to add something more to make it ...

5. Uploading and Retrieving Blobs from RDBMS    icefaces.org

InputStream in = null; try { in = new FileInputStream(inputFileSave.getCurrentFile().getFile()); byte[] data = new byte[in.available()]; in.read(data); log.info("File size : " + data.length); clb.setImage(data); } catch (FileNotFoundException e) { e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates. } catch (IOException e) { e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates. ...