2

在我的 java 项目中,我有几个类/java 文件,但在存储所有使用的东西列表的 Menu 类中。在数据方面,我存储了 6 个列表(2 个 ArrayLists 和 4 个 HashMaps),其中 1 个在 Menu 类中定义,其他在不同的类中。所以我需要在关闭程序时创建一个savestate和一个loadstate来恢复以前的状态。所有的列表都是用Serializable实现的

是否可以保存所有菜单的状态并重新加载它,或者我必须单独保存所有列表?将所有内容保存在一个文件中会很棒。

这是我拥有的功能,工作(没有警告/错误)并编译但不创建文件“数据文件”。

有任何想法吗?

    private void MenuSave(){
    String wd = System.getProperty("user.dir");

    JFileChooser fc = new JFileChooser(wd);
    int rc = fc.showDialog(null, "Select Data File Location to Save");

    if (rc == JFileChooser.APPROVE_OPTION)
    {
    File file = fc.getSelectedFile();
    String filename = file.getAbsolutePath();

    savestate(lf, lc, lv, lcl,filename);}
    }


public void savestate(Cars la, Bikes l2, Motos l3, Planes l4, People n1, Food n2, String filename){

    int i;
    File out = new File(filename);

    ObjectOutputStream output = null;

    try{
        output = new ObjectOutputStream(new FileOutputStream(filename));
        for(Car c : la.getCars().values()){
            output.writeObject(c);
        }
        for(Bike b : l2.getBikes().values()){
            output.writeObject(b);
        }
        for(Moto m : l3.getMotos().values()){
            output.writeObject(m);
        }
        for(i=0;i<n1.size();i++)
        {output.writeObject(n1.get(i)));
        }
        for(i=0;i<n2.size();i++)
        {output.writeObject(n2.get(i)));
        }


    }catch (FileNotFoundException ex) {
        ex.printStackTrace();
    } catch (IOException ex) {
        ex.printStackTrace();
    } finally {
        try {
            if (output != null) {
                output.flush();
                output.close();
            }
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}
4

2 回答 2

3

不创建文件“数据文件”。

我敢打赌它确实如此,只是不是你期望找到它的地方。不要“将文件放在任何地方”,将它们放在可读/可写、合乎逻辑且可重现的地方。

String filename = "datafiles";
File out = new File(System.getProperty("user.home"), filename);
// ...
    output = new ObjectOutputStream(new FileOutputStream(out));

然后在用户主页中查找datafiles(为什么它没有文件类型/扩展名?)文件。

  1. File接受 2 个String(父级和名称)参数的构造函数使用File操作系统的正确分隔符。
  2. user.home是一个系统属性,它指向具有读/写访问权限的稳定、可重现的路径。
于 2012-05-27T05:50:48.980 回答
0

所以我想我只需要单独保存列表而不需要. 1-选择保存文件的位置,然后将类保存在那里。2-读取只是解析输入并存储替换当前类。...

    String wd = System.getProperty("user.dir");
    this.setAlwaysOnTop(false);
    JFileChooser fc = new JFileChooser(wd);

    fc.setDialogType((int)JFileChooser.SAVE_DIALOG);


    int rc = fc.showDialog(null, "Select Data File");
    this.setAlwaysOnTop(true);

    if (rc == JFileChooser.APPROVE_OPTION)
    {
    File file = fc.getSelectedFile();

    ObjectOutputStream output = null;

    try{
    output = new ObjectOutputStream(new FileOutputStream(file));
    output.writeObject(list1);
    output.writeObject(list2);
    output.writeObject(list3);
    ....


    output.close();

    }catch (IOException x){
     ....
    }catch(NullPointerException n){
     ....    
    }}

阅读是一样的:

    String wd = System.getProperty("user.dir");
    this.setAlwaysOnTop(false);
    JFileChooser fc = new JFileChooser(wd);
    fc.setDialogType((int)JFileChooser.OPEN_DIALOG);
    int rc = fc.showDialog(null, "Select Data File to Load");
    this.setAlwaysOnTop(true);

    if (rc == JFileChooser.APPROVE_OPTION)
    {
    File file = fc.getSelectedFile();
    String filename = file.getAbsolutePath();


    ObjectInputStream input = null;
    try{
    input = new ObjectInputStream(new FileInputStream(file));
    this.list1=(ListType1)input.readObject();
    this.list2=(ListType2input.readObject();
    ....
    }catch (IOException x){
      ...  

    }catch(ClassNotFoundException x){
      ...
    }
    }
于 2012-05-28T22:28:48.203 回答