【发布时间】:2013-10-23 11:46:38
【问题描述】:
我在序列化和反序列化同一 JVM 中的对象列表时遇到问题。确切地说,现在我的对象拥有对 Alphabet 对象的相同引用,该对象具有以下规则:
VMID instanceId = new VMID(); //used in readResolve to identify persitent instances
public Alphabet (int capacity, Class entryClass) {
this.map = new gnu.trove.TObjectIntHashMap (capacity);
this.entries = new ArrayList (capacity);
this.entryClass = entryClass;
// someone could try to deserialize us into this image (e.g., by RMI). Handle this.
deserializedEntries.put (instanceId, this);
}
public VMID getInstanceId() {
return instanceId;
} // for debugging
public void setInstanceId(VMID id) { this.instanceId = id; }
// Serialization
private static final long serialVersionUID = 1;
private static final int CURRENT_SERIAL_VERSION = 1;
private void writeObject (ObjectOutputStream out) throws IOException {
out.writeInt (CURRENT_SERIAL_VERSION);
out.writeInt (entries.size());
for (int i = 0; i < entries.size(); i++) {
out.writeObject (entries.get(i));
}
out.writeBoolean (growthStopped);
out.writeObject (entryClass);
out.writeObject(instanceId);
}
private void readObject (ObjectInputStream in) throws IOException, ClassNotFoundException {
int version = in.readInt ();
int size = in.readInt();
entries = new ArrayList (size);
map = new gnu.trove.TObjectIntHashMap (size);
for (int i = 0; i < size; i++) {
Object o = in.readObject();
map.put (o, i);
entries. add (o);
}
growthStopped = in.readBoolean();
entryClass = (Class) in.readObject();
if (version >0 ){ // instanced id added in version 1S
instanceId = (VMID) in.readObject();
}
}
private transient static HashMap deserializedEntries = new HashMap();
/**
* This gets called after readObject; it lets the object decide whether
* to return itself or return a previously read in version.
* We use a hashMap of instanceIds to determine if we have already read
* in this object.
* @return
* @throws ObjectStreamException
*/
public Object readResolve() throws ObjectStreamException {
Object previous = deserializedEntries.get(instanceId);
if (previous != null){
//System.out.println(" ***Alphabet ReadResolve:Resolving to previous instance. instance id= " + instanceId);
return previous;
}
if (instanceId != null){
deserializedEntries.put(instanceId, this);
}
//System.out.println(" *** Alphabet ReadResolve: new instance. instance id= " + instanceId);
return this;
}
现在在我的对象列表反序列化之后,在某些时候字母表引用不匹配。我使用以下方法进行了检查:
for (Instance i: finalTrainingDocs){
if (!i.getTargetAlphabet().equals(finalTraining.getTargetAlphabet())){
System.out.println("not equals");
System.out.println(i.getTargetAlphabet().getInstanceId() + " " + finalTraining.getTargetAlphabet().getInstanceId());
}
finalTraining.add(i);
counter++;
System.out.println("counter " + counter);
}
并得到以下结果
counter 237
counter 238
counter 239
not equals
3ce62156867eb540:6b7f0de5:141e51fcd67:-7ffa 3ce62156867eb540:6b7f0de5:141e51fcd67:-7ffa
现在查看 VMId,因为它们是相同的,所以它不应该是同一个对象,就像上面的逻辑一样?感谢您的帮助。
【问题讨论】:
-
那些 writeObject() 和 readObject() 方法似乎没有为默认情况添加任何值。
-
好像是这样。它来自一个名为 mallet 的开源库,所以我不确定作者的意图是什么
-
我认为没有足够的代码来弄清楚这里发生了什么。比如
Alphabet.equals是如何实现的,VMID的代码在哪里? -
嗨,Stephen,字母表中没有 equals 实现,所以需要 ==,vmid 是这个docs.oracle.com/javase/7/docs/api/java/rmi/dgc/VMID.html
标签: java serialization deserialization