基于SSH的数据库中图片的读写

时间:2021-08-05 19:25:33

近期项目中遇到了这个问题,网上查了一些资料所谓是零零散散,这里写篇博文做个笔记。

注:这篇博文中部分类的属性声明未列出,应该不算难,基本都是以private 类型 名称 格式声明,然后配getter setter方法

首先是图片入库的过程,这里是固定的图片入库,项目应用中根据需要可以调整图片的URL

对应实体类:

 @Entity
@Table(name = "xxx")
public class Image { private long id;
private byte[] photo; @Id
@Column(name = "ID", unique = true, nullable = false, length = 11)
public long getId() {
return id;
}
public void setId(long id) {
this.id= id;
}
@Column(name = "PHOTO")
public byte[] getPhoto() {
return photo;
}
public void setPhoto(byte[] photo) {
this.photo = photo;
} }

入库方法:(这里的perDao是用的Hibernate经过一层封装,基本方法是调用HibernateTemplate中的saveOrUpdate)

 public void insertPhoto(long id) throws IOException{
Image image = new Image();
File file = new File("E:/workspace/xxxx/src/test.png");
InputStream a = new FileInputStream(file);
byte[] b = new byte[a.available()];
a.read(b);
image.setId(id);
image.setPhoto(b);
System.out.println(b.length);
perDao.save(personImage);
a.close();
}

接下来是读取的过程:

页面代码:

图片的src指向返回流的action,可以带参数

<img id="empImg" src="person_getPhotoById.action?id=<%=id %>" />

struts2配置文件中的配置如下

    <package name="person" extends="json-default">
<action name="person_*" class="personAction" method="{1}">
<result name="getPhotoById" type="stream">
<param name="root">inputStream</param>
</result>
</action>
</package>

action层方法:

public String getPhotoById(){try {
Blob blob = Hibernate.createBlob(personService.getPhotoById(id));
inputStream = blob.getBinaryStream();
} catch (Exception e) {
e.printStackTrace();
}
return "getPhotoById";
}

service层方法:

public byte[] getPhotoById(long id){
List<PersonImage> result = personDao.getPhotoById(id);
return result.get(0).getPhoto();
}

dao层方法:

public List getPhotoById(long id){
String hql = "FROM Image WHERE id = ?";
Long[] items = {id};
return perDao.findByHql(hql, items);
}

具体方法就是这些,如果有什么问题或者更好的方案可以留言分享