我正在为我的 Android 游戏开发一个简单的关卡编辑器。我已经使用 swing 编写了 GUI(绘制网格)。您单击要放置瓷砖的方块,它会改变颜色。完成后,将所有内容写入文件。
我的文件包含以下内容(这只是一个示例):
我使用星号来确定正在阅读的级别编号,并使用连字符来告诉读者停止阅读。
我的文件读取代码如下,例如,选择要读取的部分可以正常工作。如果我通过执行以下操作传入 2:
readFile(2);
然后它打印第二部分中的所有字符
我无法弄清楚的是,一旦我到达“起点”点,我如何实际将数字读取为整数而不是单个字符?
代码
public void readFile(int level){
try {
//What ever the file path is.
File levelFile = new File("C:/Temp/levels.txt");
FileInputStream fis = new FileInputStream(levelFile);
InputStreamReader isr = new InputStreamReader(fis);
Reader r = new BufferedReader(isr);
int charTest;
//Position the reader to the relevant level (Levels are separated by asterisks)
for (int x =0;x<level;x++){
//Get to the relevant asterisk
while ((charTest = fis.read()) != 42){
}
}
//Now we are at the correct read position, keep reading until we hit a '-' char
//Which indicates 'end of level information'
while ((charTest = fis.read()) != 45){
System.out.print((char)charTest);
}
//All done - so close the file
r.close();
} catch (IOException e) {
System.err.println("Problem reading the file levels.txt");
}
}