我道歉,因为我看过关于这个主题的帖子,但似乎没有解决我的问题。所以我会尝试非常具体。我在StreamCorruptedException
ObjectInputStream
时收到ByteArrayInputStream
我需要将对象(X509Certificate
)输出到XML文件。我的序列化代码如下所示:
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputSream(bos);
oos.writeObject(x509.getData()); // x509 is a DOM Element
oos.close();
bos.close();
XML文档看起来很好。我的输入代码如下:
// elem is a DOM Element with contents placed in Context
ByteArrayInputStream bis = new ByteArrayInputStream(
elem.getTextContext().getBytes())
ObjectInputStream ois = new ObjectInputStream(bis);
X509Certificate x509 = (X509Certificate) ois.readObject();
ois.close();
bis.close();
我得到的堆栈跟踪主要是通过我自己的代码,而JVM内部没有任何内容,因此很难跟踪。这就是它:
java.io.StreamCorruptedException: invalid stream header: 5B0A5B0A
at java.io.ObjectInputStream.readStreamHeader (ObjectInputStream.java:783)
at java.io.ObjectInputStream.<init>(ObjectInputStream.java:280)
. my code
. my code
感谢您的帮助。
答案 0 :(得分:0)
在将序列化数据放入文本节点之前,需要对序列化数据进行十六进制或base64编码,并在反序列化之前对其进行解码。文本节点是字符串,而字符串不是二进制数据的容器。
但我不明白潜在的问题。有一些标准方法和标准API用于表示XML中的证书,而这不是它。