字符串转为Blob对象:
Hibernate.createBlob(str.getBytes());
Blob对象转为字符串:
String str= new String(blob.getBytes((long) 1,(int) blob.length()));
JAVA API中对应于数据库blob类型的字段有一个java.sql.Blob类
时间: 2025-01-18 11:37:36
字符串转为Blob对象:
Hibernate.createBlob(str.getBytes());
Blob对象转为字符串:
String str= new String(blob.getBytes((long) 1,(int) blob.length()));
JAVA API中对应于数据库blob类型的字段有一个java.sql.Blob类