无法序列化包含JLabel的arraylist

时间:2015-06-30 20:08:45

标签: java serialization

我正在尝试使用图表对象序列化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();

0 个答案:

没有答案