gpt4 book ai didi

java - 从文件创建数组;收到错误 : Exception in thread "main" java. util.NoSuchElementException:未找到行

转载 作者:行者123 更新时间:2023-12-02 02:41:56 24 4
gpt4 key购买 nike

我想做的就是从文件中的数字创建一个数组...我对java很陌生,所以这可能不是最有效的方法,但我现在要摆脱有限的知识。

当我运行它时,我收到以下消息:

Exception in thread "main" java.util.NoSuchElementException: No line found
at java.util.Scanner.nextLine(Scanner.java:1540)
at CreateArray.main(CreateArray.java:27)

这是我对代码的无力尝试:

import java.io.*;
import java.util.Scanner;
import java.util.ArrayList;

public class CreateArray
{
public static void main(String[] args) throws IOException
{
File file = new File("Numbers.txt");
Scanner inputFile = new Scanner(file);

// Find the number of lines in the file
int count = 0;
while (inputFile.hasNextLine())
{
String str = inputFile.nextLine();
count++;
}

// Create array
double[] numbers = new double[count];

// Add numbers to array
String str;
while (inputFile.hasNextLine());
{
for (int i = 0; i < count; i++)
{
str = inputFile.nextLine();
numbers[i] = Double.parseDouble(str);
}
}

// Display array
for (int i = 0; i < numbers.length; i++)
System.out.print(numbers[i] + " ");
}
}

最佳答案

当您使用扫描仪在代码中写入 inputFile.hasNextLine() 时,您实际上已经从文件中读取了一行。
正如@tima 所说,您已完成读取文件中的文件第一个 while 循环。尝试看看这个java: about read txt file into array

关于java - 从文件创建数组;收到错误 : Exception in thread "main" java. util.NoSuchElementException:未找到行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45310684/

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