使用Java实现在SQLserver中实现图片的存储

Connection conn = null;
try{
DriverManager.registerDriver(new com.microsoft.jdbc.sqlserver.SQLServerDriver());
conn=DriverManager.getConnection("jdbc:microsoft:sqlserver://IP:1433;DataBaseName=Moftec","sa","mymm");
}
catch(Exception e )
{
//捕捉异常并抛出IOException
out.println("Can not connec to the database! The exception is " + e.toString());
}
FileInputStream fis=null;
File file = new File("E:/java/chart.jpg");
try{
fis = new FileInputStream(file);
}catch(FileNotFoundException e){
out.println("Not find file!");
}
PreparedStatement ps = conn.prepareStatement("Insert into gs_img (lei,years,img) values (?,?,?)");
ps.setString(1,"ivan");
ps.setInt(2,4);
ps.setBinaryStream(3,fis,(int)file.length());
ps.executeUpdate();
ps.close();
try{
fis.close();
out.println("写进去了!");
}catch(IOException e){
out.println("fis cann't cloase!");
}
 

相关文章:

  • 2021-06-28
  • 2021-07-25
  • 2021-11-01
  • 2022-01-12
  • 2022-01-01
  • 2021-09-25
  • 2022-01-24
猜你喜欢
  • 2021-10-18
  • 2021-06-20
  • 2021-09-23
  • 2022-02-28
  • 2022-12-23
  • 2021-08-07
  • 2021-05-16
相关资源
相似解决方案