不同数据库对blob字段的处理代码演示

spring、Ibatis、mysql和java处理blob字段的方法是不同的,本文给出了处理过程的详细代码,现在一一开始介绍。

1)spring配置文件:

 
 
 
  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  

2)Ibatis配置文件:

 
 
 
  1. sqlMapConfig.xml:  
  2.  
  3.  
  4.  
  5.  
  6. "http://www.ibatis.com/dtd/sql-map-config-2.dtd"> 
  7.  
  8.    
  9.  
  10.    
  11.  
  12.  
  13. maxSessions="64" maxTransactions="16"/> 
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21. monitorSqlMap.xml:  
  22.  
  23.  
  24.  
  25.  
  26. PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN"  
  27.  
  28. "http://www.ibatis.com/dtd/sql-map-2.dtd"> 
  29.  
  30.  
  31.  
  32.  
  33.  
  34. select voListBytes from t_favMonitor where userId=#userId# and reqName=#reqName#  
  35.  
  36.  
  37.  
  38.  

3) mysql数据库:

 
 
 
  1. table:  t_favMonitor(userid int, reqName varchar, voListBytes blob) 

4) java存取:

 
 
 
  1. private static class ByteObjectUtil{  
  2.  
  3. static byte[] convertObj2ByteArray(Object obj) throws IOException{  
  4.  
  5. ByteArrayOutputStream baos=null;  
  6.  
  7. ObjectOutputStream oos=null;  
  8.  
  9. try {  
  10.  
  11. baos=new ByteArrayOutputStream();  
  12.  
  13. oos=new ObjectOutputStream(baos);  
  14.  
  15. oos.writeObject(obj);  
  16.  
  17. return baos.toByteArray();  
  18.  
  19. } catch (IOException e) {  
  20.  
  21. throw new IOException(e);  
  22.  
  23. }finally{  
  24.  
  25. baos.close();  
  26.  
  27. oos.close();  
  28.  
  29. }  
  30.  
  31. }  
  32.  
  33. static Object readObjFromByteArray(byte[] ob) throws IllegalStateException, IOException, ClassNotFoundException{  
  34.  
  35. if(ob==null||ob.length==0)  
  36.  
  37. throw new IllegalStateException("parameter byte[] ob is empty!");  
  38.  
  39. ByteArrayInputStream bais=new ByteArrayInputStream(ob);  
  40.  
  41. ObjectInputStream ois=null;  
  42.  
  43. try {  
  44.  
  45. ois=new ObjectInputStream(bais);  
  46.  
  47. return ois.readObject();  
  48.  
  49. } catch (IOException e) {  
  50.  
  51. throw new IOException(e);  
  52.  
  53. }finally{  
  54.  
  55. bais.close();  
  56.  
  57. ois.close();  
  58.  
  59. }  
  60.  
  61. }  
  62.  

关于处理blob字段的方法就介绍到这里,如果您想了解更多数据库方面的知识,可以到这里看一看:http://database./,谢谢各位的支持。

网页题目:不同数据库对blob字段的处理代码演示
浏览地址:http://www.shufengxianlan.com/qtweb/news29/349279.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联