近期项目中遇到了这个问题,网上查了一些资料所谓是零零散散,这里写篇博文做个笔记。
注:这篇博文中部分类的属性声明未列出,应该不算难,基本都是以private 类型 名称 格式声明,然后配getter setter方法
首先是图片入库的过程,这里是固定的图片入库,项目应用中根据需要可以调整图片的URL
对应实体类:
1 @Entity 2 @Table(name = "xxx") 3 public class Image { 4 5 private long id; 6 private byte[] photo; 7 8 @Id 9 @Column(name = "ID", unique = true, nullable = false, length = 11) 10 public long getId() { 11 return id; 12 } 13 public void setId(long id) { 14 this.id= id; 15 } 16 @Column(name = "PHOTO") 17 public byte[] getPhoto() { 18 return photo; 19 } 20 public void setPhoto(byte[] photo) { 21 this.photo = photo; 22 } 23 24 }
入库方法:(这里的perDao是用的Hibernate经过一层封装,基本方法是调用HibernateTemplate中的saveOrUpdate)
1 public void insertPhoto(long id) throws IOException{ 2 Image image = new Image(); 3 File file = new File("E:/workspace/iocs/iocs_bjhy/src/test.png"); 4 InputStream a = new FileInputStream(file); 5 byte[] b = new byte[a.available()]; 6 a.read(b); 7 image.setId(id); 8 image.setPhoto(b); 9 System.out.println(b.length); 10 perDao.save(personImage); 11 a.close(); 12 }
接下来是读取的过程:
页面代码:
图片的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); }
具体方法就是这些,如果有什么问题或者更好的方案可以留言分享