反序列化字符串缓冲区

发布于 2024-10-20 14:00:21 字数 175 浏览 1 评论 0原文

我有一个 db varchar 字段,看起来像 Java StringBuffer 序列化的结果:

íjava.lang.StringBuffer [many random characters here removed for this question]

如何将其反序列化为 String?

I have a db varchar field looks like the result of Java StringBuffer serialization:

íjava.lang.StringBuffer [many random characters here removed for this question]

how do I deserialize it into String?

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

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

发布评论

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

评论(1

第几種人 2024-10-27 14:00:21

本质上,您需要这样做:

byte[] varcharContents = ... // get the bytes of the field, not via a String
ObjectInputStream ois = 
    new ObjectInputStream(new ByteArrayInputStream(varcharContents));
StringBuffer sb = (StringBuffer)ois.readObject();
String s = sb.toString();

您必须希望能够真正获取序列化生成的原始字节,并且它们在进出数据库的过程中没有被转换。

Essentially you need to do this:

byte[] varcharContents = ... // get the bytes of the field, not via a String
ObjectInputStream ois = 
    new ObjectInputStream(new ByteArrayInputStream(varcharContents));
StringBuffer sb = (StringBuffer)ois.readObject();
String s = sb.toString();

You'll have to hope that you can really get the original bytes produced by the serialisation back, and that they haven't been transformed on their way to and from the DB.

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