如何查看 blob 内容

发布于 2024-09-27 00:09:55 字数 129 浏览 1 评论 0原文

JavaBean 有一些 byte[] 类型的字段。

Bean是以BLOB类型的列存储在DB中的。

我知道这是XML消息。

我怎样才能看到这个 XML 消息。

非常感谢您的帮助!

JavaBean has some field type of byte[].

Bean is stored in DB to BLOB type of column.

I know that it is XML message.

How can I see this XML message.

thank you very much for your help!

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

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

发布评论

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

评论(1

烂人 2024-10-04 00:09:55

将这些字节转换为字符。你只需要事先知道字符编码,否则这些字符最终会像 mojibake 一样。

以下是使用 String 构造函数和 UTF-8 字符编码的示例:

String string = new String(bytes, "UTF-8");

Convert those bytes to characters. You only need to know the character encoding beforehand, otherwise those characters will end up like mojibake.

Here's an example using String constructor and UTF-8 character encoding:

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