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

发布于 2024-11-19 20:57:23 字数 88 浏览 3 评论 0原文

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

我正在使用java编程语言:)

what is the easiest way to convert a Blob into a byte array?I am using MYSQL and i want to convert a Blob datatype into a byte array.

Iam using java programming language:)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

驱逐舰岛风号 2024-11-26 20:57:23

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();

the mySql blob class has the following function :

blob.getBytes

use it like this:

//(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();
梦里兽 2024-11-26 20:57:23

最简单的方法是这样的。

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

The easiest way is this.

byte[] bytes = resultSet.getBytes("my_field");
撩起发的微风 2024-11-26 20:57:23

您还可以通过以下方式从 Blob 实例获取字节数组:

Blob myBlob = null;
byte[] bytes = myBlob.getBinaryStream().readAllBytes();

You can also get bytes array from Blob instance by this way:

Blob myBlob = null;
byte[] bytes = myBlob.getBinaryStream().readAllBytes();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文