以下代码是我从 doc.oracle 站点复制的完美代码。它在 netbeans 中编译没有任何错误,但输出是:
没有控制台。Java 结果:1
我应该怎么做才能让控制台正常工作。是否需要对 netbeans 设置进行任何调整?尽管我在 IDE netbeans 中的 java 编程方面有一些经验,但我很困惑。我正在使用最新版本的 JDK 和 Netbean。
公共类 RegexTestHarness {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Console console = System.console();
if (console == null) {
System.err.println("No console.");
System.exit(1);
}
while (true) {
Pattern pattern =
Pattern.compile(console.readLine("%nEnter your regex: "));
Matcher matcher =
pattern.matcher(console.readLine("Enter input string to search: "));
boolean found = false;
while (matcher.find()) {
console.format("I found the text" +
" \"%s\" starting at " +
"index %d and ending at index %d.%n",
matcher.group(),
matcher.start(),
matcher.end());
found = true;
}
if(!found){
console.format("No match found.%n");
}
}
}
}