Java Integer to IP Address int2ip(int ipInt)

Here you can find the source of int2ip(int ipInt)

Description

intip

License

Apache License

Declaration

public static String int2ip(int ipInt) 

Method Source Code

//package com.java2s;
/*/*ww w. ja v  a  2s.c o  m*/
 * Copyright 2015 Open Networking Laboratory
 *
 * 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.
 *
 */

public class Main {
    public static String int2ip(int ipInt) {
        return new StringBuilder().append(((ipInt >> 24) & 0xff)).append('.').append((ipInt >> 16) & 0xff)
                .append('.').append((ipInt >> 8) & 0xff).append('.').append((ipInt & 0xff)).toString();
    }
}

Related

  1. int2IP(long ip)
  2. Int2Ip(long ip)
  3. int2IpAddressString(long i)
  4. int2ipstr(int addr)