gpt4 book ai didi

Java 将字符串读取到二维 boolean 数组

转载 作者:太空宇宙 更新时间:2023-11-04 11:37:29 25 4
gpt4 key购买 nike

我正在尝试读取一个由 # 和空格组成的 txt 文件到二维 boolean 数组,因此从技术上讲,# 代表 true,空格代表 false。

在类似帖子的帮助下,我编写了一个代码,尽管他们正在将整数读取到数组中。

我的代码是:

public static void main(String[] args) {
String x;
String y;
Scanner fileName = null;
try {
fileName = new Scanner(new File("C:/Users/USER/Desktop/hashtag.txt"));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
x = fileName.nextLine();
y = fileName.nextLine();

boolean[][] cells = new boolean[x][y];

String finalX = fileName.nextLine();
String finalY = fileName.nextLine();
cells[finalX][finalY] = true;

for (int i = 0; i < cells.length; i++) {
for (int j = 0; j < cells[i].length; j++) {
if (cells[i][j])
System.out.print("#");
else
System.out.print(" ");
}
System.out.println();
}

}

在我编写的代码中 boolean[][] cells = new boolean[x][y];

它说[x][y]需要一个int,但发现一个字符串。同样的问题也适用于 cells[finalX][finalY] = true;

我尝试解析,即 Integer.parseInt(x) 但这给我带来了一个错误:线程“main”中出现异常 java.lang.NumberFormatException:对于输入字符串:“######################”

我的问题在什么时候出现?如果我解析为 Int,那么它无法读取正确的 # ?

最佳答案

我认为这可以解决这个问题:

1-读取文件的每一行直到其末尾以获取单元格行数,即 n,然后获取任何字符串行的长度以获取列数,即 m

2- 创建 boolean 数组cells[n][m]

3-逐行读取文件并将每一行放入字符串变量中,并迭代字符串变量字符,如果字符是#,则将true放入单元格数组中,否则放入false

      String line="";
int n=0;
while(fileName.hasNextLine()){
line = fileName.nextLine();
n++;
}
int m = line.length();
boolean[][] cells = new boolean[n][m];
// initialize Scanner to read file again
Scanner in = new Scanner(new File("C:/Users/USER/Desktop/hashtag.txt"));
int i=0;
while(in.hasNextLine()){
line = in.nextLine();
for(int j=0; j < line.length(); j++){
char c = line.charAt(j);
if(c == '#'){
cells[i][j] = true;
}
else{
cells[i][j] = false;
}
}
i++;
}

关于Java 将字符串读取到二维 boolean 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43117518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com