我是 Java 新手。我想通过扫描仪读取输入。我收到错误,因为无法“实例化类型扫描仪”。
import java.util.*;
import java.io.File;
public class Factors {
//string declaration
static String filename;
public static void main(String args[]){
//scanner initialization, needs to be done in every program that reads from user
Scanner input = new Scanner(System.in);
int caseIndex=0;
//prompts user for filename
System.out.println("Please enter the name of the file you would like to read from.");
filename = input.nextString();
//checks if filename exists
if(input.exists())
System.out.println(inp.getName() + "exists!");
else
System.out.println("File name does not exist!");
}
}
我不明白我在哪里缺乏。请帮忙。先感谢您。