我想序列化一个Map<String,CustomClass>对象,它包含一个静态嵌套的CustomClass对象作为它的值。
public class A{
static Map<String, CustomClass> map = new HashMap<>();
public static void main(String[] args) {
map.put("ABC", new CustomClass(1, 2L, "Hello"));
writeToFile();
}
private static void writeToFile() throws IOException, ClassNotFoundException {
ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("file.ser"));
out.writeObject(map);
}
private static class CustomClass implements Serializable {
int x;
long y;
String z;
private static final long serialVersionUID = 87923834787L;
private CustomClass (int x, long y, String z) {
.....
}
}
}
public class B {
static Map<String, CustomClass> map = new HashMap<>();
public static void main( String[] args) {
readFromFile();
}
private static void readFromFile() throws IOException, ClassNotFoundException {
ObjectInputStream out = new ObjectInputStream(new FileInputStream("file.ser"));
map = out.readObject(); // ClassNotFoundException occured
}
private static class CustomClass implements Serializable {
int x;
long y;
String z;
private static final long serialVersionUID = 87923834787L;
private CustomClass (int x, long y, String z) {
.....
}
//some utility methods
....
}
}
字符串
当我试图读取序列化的Map对象时,它抛出ClassNotFoundException。这是因为在不同类下定义的相同嵌套类将具有不同的名称或版本吗?
这个问题的可能解决办法是什么?
3条答案
按热度按时间bxfogqkk1#
是否因为在不同类下定义的同一个内部类会有不同的名称或版本?
这是因为“同一个内部类定义在不同的类之下”是一个矛盾的术语。它 * 不是 * 相同的。它是一个不同的类。
NB
static inner
* 也 * 是一个术语上的矛盾。ua4mk5z42#
嵌套类全名包括封闭类名称。A写入A$CustomClass,而B具有B$CustomClass
zwghvu4y3#
在你的
class B
我已经更换了下面的行,它为我工作得很好。字符串
此外,我无法找到一个方法,
readObject(Object)
与对象作为一个参数,在ObjectInputStream
。