将Blob转换为字节数组的最简单方法是什么?我使用的是MYSQL,我希望将Blob数据类型转换为字节数组。
我使用java编程语言:)
答案 0 :(得分:72)
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();
答案 1 :(得分:47)
最简单方式就是这样。
byte[] bytes = rs.getBytes("my_field");