how to get know the client port and ip address in

2019-03-05 19:06发布

问题:

I created a multiple client- server communication in java using socket. i have a single server and a client. i want to test my program with multiple clients. i m planning to create a simulator which dynamically create ip and port.. for that i just want to know how to set the client ip and port in the socket program. can anyone help me.. i use InetAddress.getByName to get the client address.

 public Socket(Proxy proxy)
  {
     if (proxy != null && proxy.type() == Proxy.Type.SOCKS) 
   { 
    SecurityManager security = System.getSecurityManager();
         InetSocketAddress epoint = (InetSocketAddress) proxy.address();
         if (security != null) {
             if (epoint.isUnresolved())
                epoint = new InetSocketAddress(epoint.getHostName(), epoint.getPort());
            if (epoint.isUnresolved())
                security.checkConnect(epoint.getHostName(),
                                      epoint.getPort());
            else
                security.checkConnect(epoint.getAddress().getHostAddress(),
                                      epoint.getPort());
        }
         impl = new SocksSocketImpl(proxy);
        impl.setSocket(this);
    } else {
        if (proxy == Proxy.NO_PROXY) {
            if (factory == null) {
                impl = new PlainSocketImpl();
                impl.setSocket(this);
             } else
                setImpl();
        } else
            throw new IllegalArgumentException("Invalid Proxy");
     }
}

回答1:

Try this for

clientString = "Remote client: " + socket.getRemoteSocketAddress().toString().substring(1);


回答2:

Simple. To create the client IP and port you should pass the parameters like below in main program.

just try like this

           java Client localhost 1112 //To run

           (ip: localhost
           port: 1112)

            // Code for main

                 public static void main(String[] args)

            {

          try

             {

                    ipAdd=args[0];

                    portNo=Integer.parseInt(args[1]);

                    Client s=new Client();  

             }

           catch (Exception e)

                {

                        System.out.println(e);
                }

}