1

我的程序中有某些数组列表,我想将它们写入文件中,以便在第二次启动程序时读取它们。目前它适用于人员的arraylist。

阅读部分:

ObjectInputStream ois = null;
                    try {
                        ois = new ObjectInputStream(new FileInputStream("test.txt"));

                    } catch (FileNotFoundException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }


                    team.setPersonList((ArrayList<Person>) ois.readObject());

writeToFile 类:

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;

public class WriteToFile {


public void write(ArrayList<Person> Data ) throws IOException, ClassNotFoundException{


   // create a new file with an ObjectOutputStream
   FileOutputStream out = new FileOutputStream("test.txt");
   ObjectOutputStream oout = new ObjectOutputStream(out);

   // write something in the file
   oout.writeObject(Data);

   // close the stream
   oout.close();

   // create an ObjectInputStream for the file we created before
   ObjectInputStream ois = null;
try {
    ois = new ObjectInputStream(new FileInputStream("test.txt"));
} catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

   // read and print what we wrote before
   System.out.println("" + ois.readObject());


  ois.close();
}

}

主要:

    import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;


public class Main {

    public static void main(String[] args) throws ClassNotFoundException, IOException{
        BufferedReader scan = new BufferedReader(new InputStreamReader(System.in));
        Team team = new Team(scan);

        new InlogSystem(team, scan);
        ArrayList<Person> playersData = team.getPersonList();

        WriteToFile x = new WriteToFile();
        x.write(playersData);
        scan.close();

    }

}

所以这是工作部分,现在我想要一个字符串数组列表使用相同的 writeToFile 类写入另一个 txt 文件(不像 personlist 那样测试)。显然 writemethod 只适用于 person 类型的数组列表,它总是将数组保存到“test.txt”中。

我如何编写这个数组列表而不创建一个新方法并且有很多模棱两可的代码?非常感谢!

4

3 回答 3

1

您可以将参数类型更改ArrayList<String>ArrayList<?>或什至List<?>,或者,我建议将其更改为Object. 然后,您的方法能够编写任意对象。

在这里使用泛型是没有用的:它提供编译时类型检查,这不会在您的方法中使用。

顺便说一句,您的异常处理非常糟糕。我建议你抓住并重新抛出ClassNotFoundExceptionas IOException; FileNotFoundException只是一个子类,IOException不需要单独捕获 -IOException当你的方法被声明为时,你为什么要捕获一个throws IOException

于 2013-06-23T20:30:51.077 回答
0

使用通用方法并将文件名作为参数传递,即

public <T implements Serializable> void write(ArrayList<T> Data, String filename) throws IOException {

   // create a new file with an ObjectOutputStream
   FileOutputStream out = new FileOutputStream(filename);
   ObjectOutputStream oout = new ObjectOutputStream(out);

   // write something in the file
   oout.writeObject(Data);

   // close the stream
   oout.close();

   // create an ObjectInputStream for the file we created before
   ObjectInputStream ois = null;
   ois = new ObjectInputStream(new FileInputStream("test.txt"));

   // read and print what we wrote before
   System.out.println("" + ois.readObject());

   ois.close();
}
于 2013-06-23T20:22:15.373 回答
0

修改您的方法以改为接受 List ,其中 T 是参数化对象。参考泛型文档

于 2013-06-23T20:21:11.690 回答