将 BLOB 文件从本地插入到数据库

发布于 2024-10-04 16:49:48 字数 184 浏览 2 评论 0原文

我试图允许用户从本地硬盘选择一个文件,并使用 java 将其作为 BLOB 值插入到 Oracle 数据库中。

setBinaryStream 不允许大文件。

使用 setBlob 我无法将文件转换为 blob。

从数据库导入 blob 文件然后覆盖它是唯一的解决方案吗?

问候, 海瑟姆

I am trying to allow users to choose a file from local hard disk and to insert it with java in a Oracle Data base as BLOB value.

The setBinaryStream did not allow big files.

with the setBlob I have no way to convert the file to a blob.

Is the import of a blob file from the DB then overwrite it the unique solution?.

Regards,
Haythem

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

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

发布评论

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

评论(2

无敌元气妹 2024-10-11 16:49:48

这是我之前使用过的建议

本质上,文件一个字节数组,您可以做的是读取文件数据并使用PreparedStatement .setBytes(index, byte[]) 来存储数据。

希望这有帮助。

This is a suggestion that I've used before

In essence a file is an array of bytes, what you can do is to read the file data and use PreparedStatement.setBytes(index, byte[]) to store the data.

Hope this helps.

那支青花 2024-10-11 16:49:48

您需要将文件作为任何字节数组读取。该字节数组可以分配给 Oracle BLOB 列。

You need to read the file as any byte array. This byte array can be assigned to Oracle BLOB column.

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