import java.lang.*;
import java.util.*;
import java.io.PrintWriter;
import java.io.FileReader;
import java.io.IOException;
public class Test
{
public static void main(String[] args) throws IOException
{
Scanner infile = new Scanner(new FileReader("historyGrades.txt"));
boolean[] correctAnswers = new boolean[20];
infile.close();
}
}
を好きではない:Javaプログラムは、私が何らかの理由でこれらのエラーを得ている言葉「スキャナ」
C:\Users\Rawr\Documents\Test.java:11: cannot resolve symbol
symbol : class Scanner
location: class Test
Scanner infile = new Scanner(new FileReader("historyGrades.txt"));
^
C:\Users\Rawr\Documents\Test.java:11: cannot resolve symbol
symbol : class Scanner
location: class Test
Scanner infile = new Scanner(new FileReader("historyGrades.txt"));
^
2 errors
Tool completed with exit code 1
私は何が起こっているのか見当がつかない。 ヘルプありがとう、ありがとうございます。
java.util.Scanner;を明示的にインポートするとどうなりますか? –
this:http://pastebin.com/SxQi7NDK –
おそらくコンパイラの準拠レベルです。私たちが以下に述べたように、1.5または1.6ではなく、1.4でコンパイルされる可能性が高いです。 –