我正在尝试使用Console类来获取用户的输入,但是当我调用System.console()
时会返回一个null对象。在使用System.console之前,我是否需要更改任何内容?
Console co=System.console();
System.out.println(co);
try{
String s=co.readLine();
}
答案 0 :(得分:231)
使用Console读取输入(仅在IDE外部可用):
System.out.print("Enter something:");
String input = System.console().readLine();
另一种方式(无处不在):
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Test {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter String");
String s = br.readLine();
System.out.print("Enter Integer:");
try{
int i = Integer.parseInt(br.readLine());
}catch(NumberFormatException nfe){
System.err.println("Invalid Format!");
}
}
}
System.console()在IDE中返回null
因此,如果您确实需要使用System.console(),请阅读此solution from McDowell。
答案 1 :(得分:112)
Scanner in = new Scanner(System.in);
int i = in.nextInt();
String s = in.next();
答案 2 :(得分:34)
从控制台/键盘读取输入字符串的方法很少。以下示例代码显示了如何使用Java从控制台/键盘读取字符串。
public class ConsoleReadingDemo {
public static void main(String[] args) {
// ====
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Please enter user name : ");
String username = null;
try {
username = reader.readLine();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println("You entered : " + username);
// ===== In Java 5, Java.util,Scanner is used for this purpose.
Scanner in = new Scanner(System.in);
System.out.print("Please enter user name : ");
username = in.nextLine();
System.out.println("You entered : " + username);
// ====== Java 6
Console console = System.console();
username = console.readLine("Please enter user name : ");
System.out.println("You entered : " + username);
}
}
代码的最后一部分使用了java.io.Console
类。通过Eclipse运行演示代码时,无法从System.console()
获取Console实例。因为eclipse将您的应用程序作为后台进程运行,而不是作为系统控制台的顶级进程运行。
答案 3 :(得分:17)
这取决于您的环境。例如,如果您通过javaw
运行Swing UI,则不是要显示的控制台。如果您在IDE中运行,它将在很大程度上取决于特定IDE对控制台IO的处理。
从命令行来看,应该没问题。样品:
import java.io.Console;
public class Test {
public static void main(String[] args) throws Exception {
Console console = System.console();
if (console == null) {
System.out.println("Unable to fetch console");
return;
}
String line = console.readLine();
console.printf("I saw this line: %s", line);
}
}
使用java
:
> javac Test.java
> java Test
Foo <---- entered by the user
I saw this line: Foo <---- program output
另一种选择是使用System.in
,您可能需要在BufferedReader
中包含读取行,或使用Scanner
(再次包装System.in
)。
答案 4 :(得分:7)
在这里找到一些关于从控制台读取的好答案,这里另一种方法是使用“扫描仪”从控制台读取:
import java.util.Scanner;
String data;
Scanner scanInput = new Scanner(System.in);
data= scanInput.nextLine();
scanInput.close();
System.out.println(data);
答案 5 :(得分:4)
试试这个。希望这会有所帮助。
String cls0;
String cls1;
Scanner in = new Scanner(System.in);
System.out.println("Enter a string");
cls0 = in.nextLine();
System.out.println("Enter a string");
cls1 = in.nextLine();
答案 6 :(得分:3)
以下内容采用athspk's answer并将其连续循环,直到用户键入&#34;退出&#34;。我还写了followup answer,我已经使用了这段代码并使其可以测试。
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class LoopingConsoleInputExample {
public static final String EXIT_COMMAND = "exit";
public static void main(final String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter some text, or '" + EXIT_COMMAND + "' to quit");
while (true) {
System.out.print("> ");
String input = br.readLine();
System.out.println(input);
if (input.length() == EXIT_COMMAND.length() && input.toLowerCase().equals(EXIT_COMMAND)) {
System.out.println("Exiting.");
return;
}
System.out.println("...response goes here...");
}
}
}
示例输出:
Enter some text, or 'exit' to quit
> one
one
...response goes here...
> two
two
...response goes here...
> three
three
...response goes here...
> exit
exit
Exiting.
答案 7 :(得分:2)
我编写了Text-IO库,它可以处理从IDE中运行应用程序时System.console()的问题。
它引入了一个类似于McDowell提出的抽象层。 如果System.console()返回null,则库将切换到基于Swing的控制台。
此外,Text-IO还有一系列有用的功能:
用法示例:
TextIO textIO = TextIoFactory.getTextIO();
String user = textIO.newStringInputReader()
.withDefaultValue("admin")
.read("Username");
String password = textIO.newStringInputReader()
.withMinLength(6)
.withInputMasking(true)
.read("Password");
int age = textIO.newIntInputReader()
.withMinVal(13)
.read("Age");
Month month = textIO.newEnumInputReader(Month.class)
.read("What month were you born in?");
textIO.getTextTerminal().println("User " + user + " is " + age + " years old, " +
"was born in " + month + " and has the password " + password + ".");
在this image中,您可以看到上面的代码在基于Swing的控制台中运行。
答案 8 :(得分:1)