-3

拜托,谁能告诉我如何使用 Primefaces 或者 JSF 来实现一些代码来将 PDF 文件上传到我的数据库?实体属性是一个 BLOB。

阿特,

迭戈·萨比诺

4

1 回答 1

0

最简单的方法是看这个例子

Prime Faces 文件示例

这为您提供了 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");
于 2013-05-16T18:01:04.750 回答