我正在尝试使用图表对象序列化arraylist,唯一的问题是该对象包含JLabel,IOException(无法加载图像内容)
ArrayList<Chart> al = new ArrayList<Chart>();
al.add(new Chart("AAPL", 100, 1));
ObjectOutputStream oot = new ObjectOutputStream(new FileOutputStream(System.getProperty("user.dir") + "test.txt"));
oot.writeObject(al);
oot.close();