我有一个看起来像这样的文本文件:
2009 年 1 月 1 日 76.0 81.1 68.1 86.7 99.2 97.5 92.9
我不明白的是如何只提取 7 个数字而不是日期。
到目前为止的编辑代码:
当我运行它时,什么都没有打印?
File inputFile = new File ("C:/Users/Phillip/Documents/Temp/temperatures.txt .txt");
Scanner scan = new Scanner(inputFile);
while (scan.hasNextLine())
{
String line = scan.nextLine();
String[] words = line.split(" ");
for (int index = 1; index < words.length; index++)
System.out.println(words[index]);