0

私は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!");  



 }  

}

どこが欠けているのか理解できません。助けてください。前もって感謝します。

4

1 に答える 1