Java InetAddress from inetAddress(String host)

Here you can find the source of inetAddress(String host)

Description

inet Address

License

Apache License

Declaration

public static InetAddress inetAddress(String host) 

Method Source Code

//package com.java2s;
/*//from   w w w.  jav a  2s .  c  om
 * Copyright (C) 2015 SoftIndex LLC.
 *
 * 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.UnknownHostException;

public class Main {
    public static InetAddress inetAddress(String host) {
        try {
            return InetAddress.getByName(host);
        } catch (UnknownHostException e) {
            throw new IllegalArgumentException(e);
        }
    }
}

Related

  1. int2InetAddress(int val)
  2. IntegerToInetAddress(int ipAddress)
  3. intToInetAddress(int i)
  4. ip2Long(InetAddress ip)