码迷,mamicode.com
首页 > 数据库 > 详细

Mysql数据库中图片字段Blob类型和String类型相互转换

时间:2016-03-24 10:17:33      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

1、Blob-->String

            String result = "";
            if (blob != null) {
                InputStream is = blob.getBinaryStream();
                ByteArrayInputStream bais = (ByteArrayInputStream) is;
                byte[] byte_data = new byte[bais.available()]; // bais.available()返回此输入流的字节数

                bais.read(byte_data, 0, byte_data.length);// 将输入流中的内容读到指定的数组
                BASE64Encoder encoder = new sun.misc.BASE64Encoder();          
                result = encoder.encodeBuffer(byte_data).trim();
                is.close();
            }

 

2、String-->Blob

          Blob blob = null;
  BASE64Decoder decoder = new sun.misc.BASE64Decoder();   
byte[] bytes1 = decoder.decodeBuffer(base64String);   ByteArrayInputStream bais = new ByteArrayInputStream(bytes1);   blob = Hibernate.createBlob(bais);

 

Mysql数据库中图片字段Blob类型和String类型相互转换

标签:

原文地址:http://www.cnblogs.com/bobshieh/p/5314212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!