如何在 Java SE 1.5.0 中使用 byte[] 输入创建 java.sql.Blob 对象?

发布于 2024-11-14 14:21:18 字数 332 浏览 1 评论 0原文

我想从 byte[] 输入创建一个 Blob 对象,以使用 PreparedStatement#setBlob() 更新表。在 J2SE 6 中,我们有 java.sql .Connection#createBlob() 来完成此操作。 J2SE 1.5.0 中有类似的东西吗?在 J2SE 1.5.0 中使用 byte[] 数据更新 BLOB 类型列的最佳方法是什么?

I want to create a Blob object from a byte[] input to update a table using PreparedStatement#setBlob(). In J2SE 6, we have java.sql.Connection#createBlob() to get this done. Is there anything similar to this available in J2SE 1.5.0? What is the best way to update a BLOB type column with a byte[] data in J2SE 1.5.0?

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

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

发布评论

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

评论(3

我的痛♀有谁懂 2024-11-21 14:21:18

使用 SerialBlob 的示例:

import java.sql.Blob;
import javax.sql.rowset.serial.SerialBlob;

byte[] byteArray = .....;
Blob blob = new SerialBlob(byteArray);

An example, using SerialBlob:

import java.sql.Blob;
import javax.sql.rowset.serial.SerialBlob;

byte[] byteArray = .....;
Blob blob = new SerialBlob(byteArray);
姜生凉生 2024-11-21 14:21:18

您不必担心创建 Blob 根本没有对象。将它们视为数据库中的 blob,以及 Java 中的 byte[]。例如:

@Entity
@Table(name = "some.table")
public class MyEntity
{
    @Id
    int myId;

    @Lob
    byte[] myBlob;

    // snip getters & setters
}

如果您确实想自己创建一个 Blob 实例,则可以使用 SerialBlob 实现:

byte[] bytes = ...;
Blob myBlob = new SerialBlob(bytes);

You don't have to worry about creating Blob objects at all. Treat them as blobs on the database, and byte[]s in Java. For example:

@Entity
@Table(name = "some.table")
public class MyEntity
{
    @Id
    int myId;

    @Lob
    byte[] myBlob;

    // snip getters & setters
}

If you're really intent on creating a Blob instance yourself, you can use the SerialBlob implementation:

byte[] bytes = ...;
Blob myBlob = new SerialBlob(bytes);
兔姬 2024-11-21 14:21:18

您不需要实际创建 Blob 本身。在执行准备好的语句时,在设置 blob 参数时使用 ByteArrayInputStream 作为参数。

You don't need to actually create the Blob itself. When doing a prepared statement, use a ByteArrayInputStream for the parameter when setting the blob parameter.

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