将 Blob 转换为字节数组的最简单方法

2022-08-31 20:03:42

将 Blob 转换为字节数组的最简单方法是什么?我正在使用MYSQL,我想将Blob数据类型转换为字节数组。

Iam 使用 java 编程语言:)


答案 1

mySql blob 类具有以下函数:

blob.getBytes

像这样使用它:

//(assuming you have a ResultSet named RS)
Blob blob = rs.getBlob("SomeDatabaseField");

int blobLength = (int) blob.length();  
byte[] blobAsBytes = blob.getBytes(1, blobLength);

//release the blob and free up memory. (since JDBC 4.0)
blob.free();

答案 2

最简单的方法是这个。

byte[] bytes = resultSet.getBytes("my_field");

推荐