是用import吗 我不记得在第几课了 谢谢大家,希望谁能帮我回答一下
Console cons = System.console();  
        if (cons != null) {  
            // -------------------------  
            PrintWriter printWriter = cons.writer();  
            printWriter.write("input:");  
            cons.flush();  
            // -------------------------  
            String str1 = cons.readLine();  
            // -------------------------  
            cons.format("%s", str1);  
        }