在FileReader中跳过预定义的行

时间:2013-04-26 22:34:22

标签: java file comments

我一直在编写一个基于文本的RPG游戏,我正在尝试实现一个保存游戏功能。一切都已编码并正常工作。

它的工作原理是使用一个名为“slist”的文件,其中包含名称的保存游戏“会话ID号”。然后为每个存档游戏提供一个文件。程序扫描此文件以查看是否存在保存文件,然后从那里确定操作。

注意:我知道这可以简化很多,但想要自己学习。

我遇到的问题是我希望能够在使用FileReader从文件读取时跳过行。这样用户可以相互共享文件,我可以在文件顶部为它们添加注释(见下文)。

我尝试过使用Scanner.nextLine(),但是需要可以在文件中的任何位置插入某个字符,并让它跳过该字符后面的行(见下文)。

private static String currentDir = new File("").getAbsolutePath();
private static File sessionList= new File(currentDir + "\\saves\\slist.dat"); //file that contains a list of all save files

private static void readSaveNames() throws FileNotFoundException {

Scanner saveNameReader = new Scanner(new FileReader(sessionList));

int idTemp;
String nameTemp;

while (saveNameReader.hasNext()) {

//   if line in file contains #, skip the line
nameTemp = saveNameReader.next();
idTemp = saveNameReader.nextInt();
saveNames.add(nameTemp);
sessionIDs.add(idTemp);
}
saveNameReader.close();
}

它引用的文件看起来像这样:

# ANY LINES WITH A # BEFORE THEM WILL BE IGNORED.
# To manually add additional save files,
# enter a new blank line and enter the
# SaveName and the SessionID.
# Example: ExampleGame 1234567890
GenericGame 1234567890
TestGame 0987654321
#skipreadingme 8284929322
JohnsGame 2718423422

有没有办法做到这一点,或者我是否必须删除文件中的任何“注释”并使用for循环跳过前5行?

1 个答案:

答案 0 :(得分:1)

我的Java有点生疏,但是......

while (saveNameReader.hasNext()) {

  nameTemp = saveNameReader.next();

  //   if line in file contains #, skip the line
  if (nameTemp.startsWith("#"))
  {
    saveNameReader.nextLine();
    continue;
  }

  idTemp = saveNameReader.nextInt();
  saveNames.add(nameTemp);
  sessionIDs.add(idTemp);
}