gpt4 book ai didi

java - 逐行读取,在java中输入到数组中

转载 作者:行者123 更新时间:2023-12-01 17:12:10 27 4
gpt4 key购买 nike

   1
0
0
0
1
1
1

有一个文本文件,必须逐行读取数组中下面的代码,但它只停止在第一行。因为它获取第一个整数“1”,但没有获取其余整数,逐行

String fileName = "input.txt";
File file = new File(fileName);
Scanner scanner = new Scanner(file);
// String s = "";
while(scanner.hasNextLine()){
data1 = scanner.nextLine();
}


for ( int i = 0; i < data1.length(); i++)
{
covertDataArray[i] = Byte.parseByte(data1.substring( i, i+1));
}

最佳答案

让我们看一下代码。

    while(scanner.hasNextLine()){
data1 = scanner.nextLine();
}

data1 始终只包含您在其中读取的最新行的内容。

要修复,只需附加到变量即可:

    while(scanner.hasNextLine()){
data1 += scanner.nextLine();
}

关于java - 逐行读取,在java中输入到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23225797/

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