我问过一个关于如何将多个保存文件保存到.ser文件的问题,我被建议使用一个hashset,因为它们是可序列化的。我试图编写一段测试代码来序列化哈希集中的每一条信息:
public class testHashSet {
public static void main(String[] args) throws ClassNotFoundException {
testClass new1 = new testClass("Hello", "male", true);
testClass new2 = new testClass("Goodbye", "female", true);
testClass new3 = new testClass("Something", "other", false);
HashSet<testClass> hSet = new HashSet<testClass>();
hSet.add(new1);
hSet.add(new2);
hSet.add(new3);
System.out.println(hSet);
for(int i = 0; i < hSet.size(); i++) {
try {
FileOutputStream fileOut = new FileOutputStream("/Users/Prodigy958/Desktop/Hack_exeSaves.ser");
ObjectOutputStream out = new ObjectOutputStream(fileOut);
out.writeObject(hSet(i));
out.close();
fileOut.close();
} catch(IOException i) {
i.printStackTrace();
}
}
}
}
但是我在使用索引(i)编写对象时遇到了问题,因为它表示没有为类型HashSet
定义该方法。有没有办法迭代哈希集中的每一条信息,或者我应该一次串行化整个集合。另一个问题是,如果第一个答案是后者,我将如何将数据反序列化为单独的类?
答案 0 :(得分:2)
解决方案:序列化哈希集本身。只需确保testClass实现Serializable,并且它的所有字段都是这样做的。
如果要反序列化它并读取对象,则将其强制转换为listname.add("...")
并保持其序列化之前的状态。