Java Socket Address Get asString(SocketAddress socketAddress)

Here you can find the source of asString(SocketAddress socketAddress)

Description

Returns a string representation of the specified socket address in the form :

License

Apache License

Parameter

Parameter Description
socketAddress the socket address

Declaration

public static String asString(SocketAddress socketAddress) 

Method Source Code


//package com.java2s;
/*/*from ww  w . j a v a  2 s .c o  m*/
 * Copyright 2014, The Sporting Exchange Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.SocketAddress;

public class Main {
    /**
     * Returns a string representation of the specified socket address
     * in the form <IPADDRESS>:<PORT>
     *
     * @param socketAddress the socket address
     */
    public static String asString(SocketAddress socketAddress) {
        final InetSocketAddress inetSocketAddress = (InetSocketAddress) socketAddress;
        final InetAddress inetAddress = inetSocketAddress.getAddress();
        String host = inetSocketAddress.getHostName();
        if (inetAddress != null) {
            host = inetAddress.getHostAddress();
        }
        return host + ":" + inetSocketAddress.getPort();
    }
}

Related

  1. addressIn(SocketAddress address, String ip)
  2. addressLabel(SocketAddress localAddress, SocketAddress remoteAddress)
  3. addressMapToString( Map> map)
  4. addressToString(InetSocketAddress a)
  5. addressToString(InetSocketAddress address, Boolean useIpAddress)
  6. cast2SocketAddress(String addr)
  7. compareAddresses(InetSocketAddress addr1, InetSocketAddress addr2)
  8. convertToHostString(SocketAddress hostAddress)
  9. create(SocketAddress address, SocketAddress port)