我有一个如下所示的文本文件:
5 10
ahijkrewed
llpuvesoru
irtxmnpcsd
kuivoqrsab
eneertlqzr
tree
alike
cow
dud
able
dew
第一行的第一个数字 5 是单词搜索谜题的行数,10 是谜题的列数。接下来的五行是谜题。我需要知道如何将 5 放入行整数,将 10 放入列整数。然后我需要跳到下一行来阅读字符串。使用一个修改后的文件,只有 5 行用于拼图,我想出了如何将拼图部分放入 2d 数组中,但我需要一种方法来从正确文本文件的第一行设置该数组的大小。
我写了这个:
import java.io.*;
class SearchDriver {
public static void processFile(String filename) throws FileNotFoundException, IOException {
FileReader fileReader = new FileReader(filename);
BufferedReader in = new BufferedReader(fileReader);
// declare size of array needed
//
// int rows and columns need to be read in from first
// line of the file which will look like: X Y
//
// so i need rows = X and columns = Y
int rows = 5;
int columns = 10;
String[][] s = new String[rows][columns];
// start to loop through the file
//
// this will need to start at the second line of the file
for(int i = 0; i < rows; i++) {
s[i] = in.readLine().split("(?!^)");
}
// print out the 2d array to make sure i know what i'm doing
for(int i=0;i<rows;i++) {
for(int j=0;j<columns;j++) {
System.out.println("(i,j) " + "(" + i + "," + j + ")");
System.out.println(s[i][j]);
}
}
}
public static void main(String[] args)
throws FileNotFoundException, IOException {
processFile("puzzle.txt");
}
}
任何帮助都将不胜感激,包括任何网站,其中包含有关使用 BufferedReader 读取文件的示例和大量文档。