获取退出服务器的请求

时间:2016-09-30 09:55:02

标签: node.js get server

我正在尝试使用node.js连接到现有服务器但是我收到错误:听EADDRINUSE ::: 3000,我理解这意味着服务器已经在使用

public void clickbutton (View view){
    Handler handler = new Handler();
    handler.postDelayed(new Runnable() {
        @Override
        public void run() {
            // show toast here...
 NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this);
    mBuilder.setSmallIcon(R.drawable.notification_icon);
    mBuilder.setContentTitle("My notification");
    mBuilder.setContentText("Hello World!");
    Notification notifcation = mBuilder.build();

    NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

    nm.notify(2, notifcation);

        }
    }, 6000); // 6 seconds

}

我如何连接到现有服务器呢?

1 个答案:

答案 0 :(得分:0)

我认为您正在尝试使用相同的端口运行另一个节点服务器。 使用请求模块将服务器与另一个端口连接,以连接在3000端口上运行的服务器。