集册 Java实例教程 获取单个InetSocketAddress

获取单个InetSocketAddress

欢马劈雪     最近更新时间:2020-01-02 10:19:05

331
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
获取单个InetSocketAddress


//package com.nowjava;

import java.net.InetSocketAddress;

/*
n o w  j a v a  . c o m 提 供
*/

public class Main {

    public static void main(String[] argv) throws Exception {

        String address = "nowjava.com";

        Integer port = 2;

        System.out.println(getSingle(address, port));

    }


    private static final int DEFAULT_PORT = 80;


    public static InetSocketAddress getSingle(String address, Integer port) {


        if (port == null) {

            port = DEFAULT_POR
展开阅读全文