拜托,谁能告诉我如何使用 Primefaces 或者 JSF 来实现一些代码来将 PDF 文件上传到我的数据库?实体属性是一个 BLOB。
阿特,
迭戈·萨比诺
拜托,谁能告诉我如何使用 Primefaces 或者 JSF 来实现一些代码来将 PDF 文件上传到我的数据库?实体属性是一个 BLOB。
阿特,
迭戈·萨比诺
最简单的方法是看这个例子
这为您提供了 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");