2
我很抱歉我的英語。我用翻譯器。有一個Java代碼。從現場Posgresql BYTEA二進制數據,並將其存儲在一個文件數據庫中讀取:如何在xpages中將引用傳遞給Java中的文件
<code>
public static void saveToFile() throws IOException {
try {
Connection conn = JdbcUtil.getConnection(FacesContext.getCurrentInstance(), "derby1");
ResultSet rs = conn.createStatement().executeQuery(
"SELECT files FROM test_goverment where who='d'");
byte[] imgBytes = null;
if (rs != null) {
while (rs.next()) {
imgBytes = rs.getBytes(1);
}
FileOutputStream os = new FileOutputStream("c:\\samoutput.txt");
os.write(imgBytes);
os.flush();
os.close();
}
rs.close();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
enter code here}
}
</code>
如何傳輸的文件下載到用戶的XPages。下載後刪除它。
非常感謝。有用.... – JohnLemon