我有一个桌面程序,我必须在db中保存不同格式和不同大小的图像文件。知道我该怎么办?有人可以帮帮我吗?
答案 0 :(得分:0)
通常,您应该只将图像文件的地址存储在数据库中。
达到同样的目的,数据库不会变得臃肿。
答案 1 :(得分:0)
作为BLOB:http://en.wikipedia.org/wiki/Binary_large_object
确切的实现取决于您的数据库系统。
答案 2 :(得分:0)
这是新手开发者最常见的问题。 最佳解决方案是......您将图像保存在文件夹中并将文件路径保存在数据库中,之后您可以使用此文件路径访问该文件。
答案 3 :(得分:0)
您可以通过将其转换为二进制将图像保存到数据库中,如下所示:
public void saveImage(File file){
try {
String img_id=JOptionPane.showInputDialog("Enter Image ID");
FileInputStream fis=null;
String query="insert into image(image_id,image) values (?,?)";
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc:odbc:image");
PreparedStatement pstm=con.prepareStatement(query);
fis=new FileInputStream(file);
pstm.setString(1, img_id);
pstm.setBinaryStream(2, (InputStream)fis, (int)file.length());
pstm.executeUpdate();
JOptionPane.showMessageDialog(null, "Image Successfully Uploaded to Database");
pstm.close();
con.close();
} catch (Exception ex) {
System.out.println("Exception Occured: "+ex);
}
}
通过再次从二进制文件中获取图像并将其保存在某个物理位置上来检索它:
public void getSavedImages(){
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc:odbc:image");
PreparedStatement pstm1 = con.prepareStatement("select * from image");
ResultSet rs1 = pstm1.executeQuery();
while(rs1.next()) {
InputStream fis1;
FileOutputStream fos;
String image_id;
try {
fis1 = rs1.getBinaryStream("image");
image_id=rs1.getString("image_id");
fos = new FileOutputStream(new File(Path to "C:\\" + (image_id) + "Your Extension(.jpg/.gif)"));
int c;
while ((c = fis1.read()) != -1) {
fos.write(c);
}
fis1.close();
fos.close();
} catch (Exception ex) {
System.out.println(ex);
}
}
pstm1.close();
con.close();
} catch (Exception ex) {
System.out.println("Exception Occured:"+ex);
}
}