private Stack readStack(int count) throws IOException {
Stack list = new Stack();
ref.addElement(list);
for (int i = 0; i < count; i++) {
list.addElement(unserialize(HproseHelper.ObjectClass));
}
return list;
}
private Hashtable readListAsHashtable(int count) throws IOException {