Java控制台应用程序:接受来自无限循环的命令

时间:2013-06-26 23:36:09

标签: java console

所以我在我的控制台应用程序的主线程中运行了无限循环,如此。

public static void main(String[] args) {
    while(true){
        doSomething();
        doSomethingElse();
        System.out.println("some debugging info");
        doAnotherThing();
    }
}

我希望这段代码能够一遍又一遍地运行。

有一段时间,我想在控制台输入一个命令,比如字符串“给我更多信息plox”,然后如果该命令等于某些东西,我希望我的代码能做点什么。

通常我会使用扫描仪,但我不能在这里做 - 因为scanner.next();暂停我的代码...无论我是否输入命令,我希望我的代码继续运行。我能看到的唯一解决方法是使用文件。但还有其他选择吗?

3 个答案:

答案 0 :(得分:2)

使用线程,主线程从控制台读取,另一个线程执行循环,第一个线程更新字符串列表(生产者),循环线程读取列表以查看是否有新内容(消费者) )

答案 1 :(得分:2)

您可以执行以下操作

public class MainApp implements Runnable
{

    static String command;
    static boolean newCommand = false;

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args)
    {
        MainApp reader = new MainApp();
        Thread t = new Thread(reader);
        t.start();

        while (true)
        {
            doSomething();

            if (newCommand)
            {
                System.out.println("command: " + command);
                newCommand = false;
                //compare command here and do something
            }
        }
    }

    private static void doSomething()
    {
        try
        {
            System.out.println("going to do some work");
            Thread.sleep(2000);
        } catch (InterruptedException ex)
        {
            Logger.getLogger(MainApp.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

    @Override
    public void run()
    {
        Scanner scanner = new Scanner(System.in);

        while(true)
        {
            command = scanner.nextLine();
            System.out.println("Input: " + command);
            newCommand= true;
        }
    }



}

答案 2 :(得分:0)

您可以尝试System.in.available(),它是非阻止的。然而,该方法被称为没有很好的规格。在某些系统(基于Unix的OpenJDK)上,只有在用户使用> 0键确认输入后才返回enter

否则,morgano建议在单独的帖子上不断阻止System.in.read()