Câu hỏi 170938 - Kỹ thuật lập trình hướng đối tượng - IT07
Đoạn mã sau đây thực hiện gì?
public class XuLyFile{
public void docFile(File f, ListArray<SV> lstSV)
throws FileNotFoundException, IOException, ClassNotFoundException
{
FileInputStream fin = new FileInputStream(f);
ObjectInputStream in = new ObjectInputStream(fin);
lstSV = (ArrayList)in.readObject();
in.close();
}
}