线程命令行,同时维护监听器

时间:2015-02-17 02:37:28

标签: java sockets console

我有一个用于TCP连接的Threaded客户端如何在仍然监听连接时连续检查控制台输入。

1 个答案:

答案 0 :(得分:0)

虽然这是非常广泛的,但我认为这可能是你想要的:

    Thread t0 = new Thread(new Runnable(){
        public void run() {
            //Add code here
        }
    });t0.start();
    Thread t1 = new Thread(new Runnable(){
        public void run() {
            //This will run the same time as the other code above.
        }
    });t1.start();

告诉我,如果我错了。你的问题真的很模糊。