Mysql数据库中图片字段Blob类型和String类型相互转换
Posted 指尖飞舞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql数据库中图片字段Blob类型和String类型相互转换相关的知识,希望对你有一定的参考价值。
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类型相互转换的主要内容,如果未能解决你的问题,请参考以下文章