java.net.BindException:地址已在使用中:JVM_Bind

Posted

技术标签:

【中文标题】java.net.BindException:地址已在使用中:JVM_Bind【英文标题】:java.net.BindException: Address already in use: JVM_Bind 【发布时间】:2015-10-30 02:38:10 【问题描述】:

服务器程序:

 import java.io.*;
 import java.net.*;
 class Server
   public static void main(String args[])
    try
        ServerSocket ss = new ServerSocket(8080);
        Socket s = ss.accept();
        DataInputStream dis = new DataInputStream(s.getInputStream());
        String str = (String)dis.readUTF();
        System.out.println("Message : "+str);
        ss.close();
    catch(Exception e)
        System.out.println(e);
    
  

客户程序:

import java.io.*;
import java.net.*;
class client
  public static void main(String args[])
    try
        Socket s = new Socket("localhost",8080);
        DataOutputStream dos = new DataOutputStream(s.getOutputStream());
        dos.writeUTF("Hello friend ");
        dos.flush();
        dos.close();
        s.close();
    catch(Exception e)
        e.printStackTrace();
      
    
 

当我执行这个程序时。我收到类似“java.net.BindException:地址已在使用:JVM_Bind”之类的错误,但在它正常工作之前。请问有人帮我解决这个问题吗?

【问题讨论】:

也许同一进程的两个实例同时运行,试图绑定到同一个端口两次? 【参考方案1】:

如果您多次重新启动程序的服务器端,则可能存在 TIME_WAIT 中的套接字,从而阻止您再次侦听端口 8080。

你需要设置启用重用选项(socket option SO_REUSEADDR)如下:

ServerSocket ss = new ServerSocket();
ss.setReuseAddress(true);
ss.bind(new InetSockAddress(8080));

【讨论】:

以上是关于java.net.BindException:地址已在使用中:JVM_Bind的主要内容,如果未能解决你的问题,请参考以下文章

JAVA:java.net.BindException:地址已在使用:JVM_Bind [重复]

Maven - java.net.BindException:地址已在使用中

java.net.BindException:绑定失败:EADDRINUSE(地址已在使用中)

java.net.BindException:地址已在使用中:JVM_Bind [重复]

无法启动 HSQLDB(java.net.BindException:地址已在使用中)

java.net.BindException:地址已在使用中:JVM_Bind