2013-05-16 165 views
-3

請誰能告訴我如何實現一些代碼上傳PDF文件到我的數據庫,使用Primefaces或者只是JSF? 實體屬性是一個BLOB。primefaces文件上傳和下載PDF

ATT,

迭戈薩比諾

+0

任何人都可以幫助解決這個問題? –

+0

包括你自己或Google?顯示一些努力。 – Mindwin

回答

0

最簡單的方法是看看下面這個例子

Prime Faces File Example

這給你一個文件對象。

然後你就可以到數據庫保存爲

//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");