primefaces fileupload和下载PDF

时间:2013-05-16 17:07:47

标签: oracle jsf pdf file-upload primefaces

请问,有谁可以告诉我如何实现一些代码将PDF文件上传到我的数据库,使用Primefaces只是JSF? 实体属性是BLOB。

ATT,

Diego Sabino

1 个答案:

答案 0 :(得分:0)

最简单的方法是查看此示例

Prime Faces File Example

这为您提供了File对象。

然后您可以将其作为

保存到数据库中
//saving the image
            PreparedStatement psmnt = (PreparedStatement)    con.prepareStatement("INSERT INTO DB.images VALUES(?,?)");
            psmnt.setInt(1, 5);
            psmnt.setBlob(2, new FileInputStream(fileFromEvent), fileFromEvent.length());
            psmnt.executeUpdate();
            System.out.println("Image saved in DB");