当前位置: 技术问答>java相关
如何实现图片上传、缩放并存放到数据库中
来源: 互联网 发布时间:2015-05-09
本文导语: 请问:如何实现图片上传、缩放并存放到数据库中 | String sql="insert into table(image) values ?"; PreparedStatement ps=null; FileInputStream fis=new FileInputStream(new File("***.gif")); ps.setBinaryStream(1,fis,fis.length()...
请问:如何实现图片上传、缩放并存放到数据库中
|
String sql="insert into table(image) values ?";
PreparedStatement ps=null;
FileInputStream fis=new FileInputStream(new File("***.gif"));
ps.setBinaryStream(1,fis,fis.length());
Connection.executeUpdate(sql);
ps.close();
PreparedStatement ps=null;
FileInputStream fis=new FileInputStream(new File("***.gif"));
ps.setBinaryStream(1,fis,fis.length());
Connection.executeUpdate(sql);
ps.close();