我正在尝试创建一个简单的控制台,但我发现了这个: 创建一个“命令”控制台
我决定尝试一下,它似乎非常适合我的需要。唯一的问题是,由于 BufferedReader 被阻止,我似乎无法从用户那里获得用户输入。我对 BufferedReader 和 JConsole 都不熟悉,所以我不知道需要修复什么。
这是我的代码版本:
import java.io.*;
import bsh.util.*;
import java.awt.*;
public class CLI extends JConsole
{
public CLI()
{
Font font = new Font("Consolas", Font.BOLD, 12);
setFont(font);
new InputThread().start();
}
private class InputThread extends Thread
{
BufferedReader input = new BufferedReader(getIn());
String newline = System.getProperty("line.separator");
String line = "";
String prompt = "$ ";
public void run()
{
try
{
do
{
print(prompt, Color.RED);
line = input.readLine();
print("You typed: " + line + newline, Color.BLUE);
} while (!line.equalsIgnoreCase("quit"));
input.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
}