Java读入文本文件,然后分成单独的数组

时间:2012-05-13 21:36:11

标签: java filereader

我有一个读入的文本文件。它有<.>的分隔符。有一个主要的主题,然后有三个段落。让我们说titlesection1section2section3,然后是下一篇文章。

如何存储数据以便ArrayList将拥有所有标题,ArrayList 2将包含所有section1信息等?我希望能够输出这些数组。

例如为:
大风暴即将来临。

关于大风暴

暴风雨的统计数据

关于暴风雨的结论

上面的例子显示了一条记录的样子。

public void read()
{
    try
    {
        FileReader fr = new FileReader(file_path);
        BufferedReader br = new BufferedReader(fr);
        String s = "";
        // keep going untill there is no input left and then exit         
        while((s = br.readLine()) != null)
        { }
        fr.close();
    }
    catch (Exception e)
    {
        System.err.println("Error: read() " + e.getMessage());
    }
}

public static void main(String [] args)
{
    Reader reader = new ResultsReader("C:/data.txt");
    reader.read();
    String output = ((ResultsReader)reader).getInput();
    String str = "title<.>section1<.>section2<.>";
    String data[] = str.split("<.>");   
}

我不确定如何将数据存储在单独的ArrayLists中,以便可以遍历它们。

1 个答案:

答案 0 :(得分:1)

您无法创建数组并将数据放入其中,因为您不知道创建数组有多大。因此,请使用列表,然后在读完文件后将其转换为数组:

List tilesList = new ArrayList<String>();
// etc.

FileReader fr = new FileReader(file_path);
BufferedReader br = new BufferedReader(fr);
String s = null // I think this should be null, so that if there are no lines, 
                // you don't have problems with str.split();
while((s = br.readLine()) != null) {
  String[] line = str.split("<.>");
  tilesList.add(line[1]);
  // etc.
}
fr.close();

String[] tiles = tilesList.toArray(new String[tilesList.size()]);
// etc.