不懂mysql blob乱码怎么办?其实想解决这个问题也不难,下面让小编带着大家一起学习怎么去解决,希望大家阅读完这篇文章后大所收获。

mysql中blob类型乱码的解决方法:

可以自己写个转换类,然后用自己的转换类进行转换。

转换类代码如下:

importjava.io.ByteArrayInputStream;importjava.io.UnsupportedEncodingException;importjava.sql.Blob;importjava.sql.CallableStatement;importjava.sql.PreparedStatement;importjava.sql.ResultSet;importjava.sql.SQLException;importorg.apache.ibatis.type.BaseTypeHandler;importorg.apache.ibatis.type.JdbcType;publicclassMyBlobTypeHandlerextendsBaseTypeHandler<String>{//###指定字符集privatestaticfinalStringDEFAULT_CHARSET="utf-8";publicvoidsetNonNullParameter(PreparedStatementps,inti,Stringparameter,JdbcTypejdbcType)throwsSQLException{ByteArrayInputStreambis;try{//###把String转化成byte流bis=newByteArrayInputStream(parameter.getBytes(DEFAULT_CHARSET));}catch(UnsupportedEncodingExceptione){thrownewRuntimeException("BlobEncodingError!");}ps.setBinaryStream(i,bis,parameter.length());}@OverridepublicStringgetNullableResult(ResultSetrs,StringcolumnName)throwsSQLException{Blobblob=(Blob)rs.getBlob(columnName);byte[]returnValue=null;if(null!=blob){returnValue=blob.getBytes(1,(int)blob.length());}try{//###把byte转化成stringreturnnewString(returnValue,DEFAULT_CHARSET);}catch(UnsupportedEncodingExceptione){thrownewRuntimeException("BlobEncodingError!");}}publicStringgetNullableResult(CallableStatementcs,intcolumnIndex)throwsSQLException{Blobblob=(Blob)cs.getBlob(columnIndex);byte[]returnValue=null;if(null!=blob){returnValue=blob.getBytes(1,(int)blob.length());}try{returnnewString(returnValue,DEFAULT_CHARSET);}catch(UnsupportedEncodingExceptione){thrownewRuntimeException("BlobEncodingError!");}}@OverridepublicStringgetNullableResult(ResultSetrs,intcolumnIndex)throwsSQLException{//TODOAuto-generatedmethodstubreturnnull;}}

在mybatis配置文件中指定

<resultcolumn="settlementContent"property="settlementContent"typeHandler="cn.xxx.utils.MyBlobTypeHandler"/>

感谢你能够认真阅读完这篇文章,希望小编分享mysql blob乱码怎么办内容对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,遇到问题就找亿速云,详细的解决方法等着你来学习!