hibernate3学习笔记(十四)|Blob、Clob - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-19
ate.SessionFactory;14.import org.hibernate.Transaction;15.import org.hibernate.cfg.Configuration;16.
17.import com.hb3.pack_07.model.User;18.
19.public class BusinessService {20.
21. public static void main(String[] args) throws IOException, SQLException {22.23. Configuration config = new Configuration().configure();24. SessionFactory sessionFactory = config.buildSessionFactory();25. Session session = sessionFactory.openSession();26.
27. FileInputStream fileInputStream = new FileInputStream("c:\\sunset.jpg");28. Blob photo = Hibernate.createBlob(fileInputStream);29. Clob resume = Hibernate.createClob("Bla....Bla....resume text!!");30.31. User user = new User();32. user.setName("shenbin");33. user.setAge(new Integer(28));34. user.setPhoto(photo);35. user.setResume(resume);36.
37. Transaction tx = session.beginTransaction();38. session.save(user);39. tx.commit();40.41. session.close();42. session = sessionFactory.openSession();43.44. user = (User) session.load(User.class, new Integer(1));45. System.out.print(user.getAge() + "\t" +46. user.getName() + "\t");47. String str_resume = user.getResume().getSubString(1, (int) user.getResume().length());48. System.out.println(str_resume);49. InputStream inputStream = user.getPhoto().getBinaryStream();50. FileOutputStream fileOutputStream = new FileOutputStream("c:\\sunset_save.jpg");51. byte[] buf = new byte[1];52. int len = 0;53. while((len = inputStream.read(buf)) != -1) {54. fileOutputStream.write(buf, 0, len);55. }56. inputStream.close();57. fileOutputStream.close();58. System.out.println("save photo to c:\\sunset_save.jpg");59.
60. session.close();61. sessionFactory.close();62. }63.}
在MySQL中对BLOB以及CLOB类型的使用还是比较简单的,如果在Oracle DB中则相对复杂一些,计划在以后章节加以说明。 可先参阅:http://blog.csdn.net/fhway/archive/2006/11/01/1359482.aspx |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于hibernate3学习笔记(十四)|Blob、Clob - 编程入门网的所有评论