Anh chị cho em hỏi tại sao đoạn code này không đọc được dữ liệu từ file ạ.
Em rất cảm ơn.
package testXuatNhapFile;
import java.io.*;
import java.util.ArrayList;
public class TestXuatNhapThuong {
public static void main(String[] args) throws IOException, ClassNotFoundException {
ArrayList<Something> sths = new ArrayList<Something>();
Something sth1 = new Something("s1", 1, 2);
Something sth2 = new Something("s2", 2, 3);
Something sth3 = new Something("s3", 3, 4);
sths.add(sth1);
sths.add(sth2);
sths.add(sth3);
FileOutputStream fos = new FileOutputStream("sths.txt");
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(sths);
oos.close();
fos.close();
FileInputStream fis = new FileInputStream("sth.txt");
ObjectInputStream ois = new ObjectInputStream(fis);
var result = (ArrayList)ois.readObject();
for (var something : result) {
((Something) something).display();
}
ois.close();
fis.close();
}
}