从数据库保存/检索二进制数据

发布于 2024-10-31 04:17:50 字数 418 浏览 0 评论 0原文

我在 tomcat 6.0.32 x64 中部署了一个 Web 应用程序,它使用 Hibernate 3.0 连接 Postgres 9.0 x64 数据库。

该应用程序在数据库中保存一个二进制字段,当我找到它时,它是不同的。

二进制保存: [-82, 120, 71, 23, -88, 67, 36, 30, 57, -72, 42, 29, -64, 93, -8, -103, -63, 124, 66, 20]

二进制获得: [-67, 55, 56, 52, 55, 49, 55, 97, 56, 52, 51, 50, 52, 49, 101, 51, 57, 98, 56, 50, 97, 49, 100, 99, 48、53、100、102、 56, 57, 57, 99, 49, 55, 99, 52, 50, 49, 52]

谢谢

I have a web app deployed in tomcat 6.0.32 x64 and it's using Hibernate 3.0 to connect a Postgres 9.0 x64 database.

The app saves a binary field in the database and when I find it, it is different.

Binary Saved:
[-82, 120, 71, 23, -88, 67, 36, 30, 57, -72, 42, 29, -64, 93, -8, -103, -63, 124, 66, 20]

Binary Obtained:
[-67, 55, 56, 52, 55, 49, 55, 97, 56, 52, 51, 50, 52, 49, 101, 51, 57, 98, 56, 50, 97, 49, 100, 99, 48, 53, 100, 102, 56, 57, 57, 99, 49, 55, 99, 52, 50, 49, 52]

Thanks

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

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

发布评论

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

评论(2

意犹 2024-11-07 04:17:50

检查您的 postgres jdbc 驱动程序版本。它至少应该与您的数据库服务器一样新,因此您需要 9.0 或更高版本的驱动程序。

我相信 bytea 线格式在 9.0 中发生了变化,如果您有旧的驱动程序,这可以解释这个问题。

Check your postgres jdbc driver version. It should be at least as recent as your DB server, so you need a 9.0 driver or better.

I believe the bytea wire format changed in 9.0, which could explain this problem if you have an old driver.

始于初秋 2024-11-07 04:17:50

你没有提供足够的细节,但我会冒险猜测在某些时候你正在将字节转换为字符(你的输出看起来大约是输入的两倍,java字符是2个字节)。字节!= 字符。

否则,可能与流的错误使用有关。

You don't provide enough details, but i'm going to go out on a limb and guess that at some point you are translating bytes to characters (your output looks about twice as long as your input, java characters are 2 bytes). bytes != chars.

otherwise, it could be something related to incorrect usage of streams.

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