CLOB/BLOB与String互转。

来源:互联网 发布:ipad有淘宝卖家版吗 编辑:程序博客网 时间:2024/05/16 02:54
  String s1="走上编程不归路……";
         
  Clob c =newSerialClob(s1.toCharArray());//String 转 clob
  Blob b =newSerialBlob(s1.getBytes("GBK"));//String 转 blob
// 也可以这样不传字符集名称,默认使用系统的
//  Blob b = new SerialBlob(s1.getBytes());
  String clobString = c.getSubString(1, (int) c.length());//clob 转 String
  String blobString =newString(b.getBytes(1, (int) b.length()),"GBK");//blob 转 String
//  前面若没传入字符集名称,则这里也不需要传入,以免出错
//  String blobString = new String(b.getBytes(1, (int) b.length()));
  
        System.out.println(clobString);
        System.out.println(blobString);



    // 将字CLOB转成STRING类型  
  1. String content = ClobToString((Clob)obj[1]); 

  1.     public String ClobToString(Clob clob) throws SQLException, IOException {   
  2.           
  3.         String reString = "";   
  4.         java.io.Reader is = clob.getCharacterStream();// 得到流   
  5.         BufferedReader br = new BufferedReader(is);   
  6.         String s = br.readLine();   
  7.         StringBuffer sb = new StringBuffer();   
  8.         while (s != null) {// 执行循环将字符串全部取出付值给StringBuffer由    StringBuffer转成STRING   
  9.             sb.append(s);   
  10.             s = br.readLine();   
  11.         }   
  12.         reString = sb.toString();   
  13.         return reString;   
  14.     } 





http://www.oschina.net/code/snippet_135225_5485