如何查看 blob 内容
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将这些字节转换为字符。你只需要事先知道字符编码,否则这些字符最终会像 mojibake 一样。
以下是使用
String
构造函数和 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: