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

0

Scanner没有方法nextString()exists()方法。我认为您的要求是检查该文件是否存在。像这样做:

    import java.util.*;  
    import java.io.File;  

    public class Factors 
    { 
        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.nextLine();  
            File file=new File(filename);
            //checks if filename exists  
            if(file.exists())  
                System.out.println(file.getName() + "exists!");  
            else  
                System.out.println("File name does not exist!");  
    }

}
于 2013-09-24T10:29:37.810 回答