来自文本文件的Android 2d数组

时间:2013-05-05 21:12:58

标签: java android

所以我要做的是我有一个文本文件,有5580行,然后有9列用a分隔。我正在尝试让用户输入一个将在第一列中的条目,我需要搜索该条目并提取其余信息。 Java对我来说是新的(我开始想念fortran或python)有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

了解输入流和读者。以下是您可以使用的一些代码示例。

String token = // init it
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileReader(thefileName)));

for (String line = reader.nextLine(); line !=null; line = reader.nextLine()) {
    String[] parts = line.split(",");
    if (token.equals(parts[0])) {
       // this is the line you are looking for...
    }
}