Java Integer to IP Address intToIp(int i)

Here you can find the source of intToIp(int i)

Description

Converts an integer IP address into its text form.

License

Open Source License

Parameter

Parameter Description
i a parameter

Declaration

public static String intToIp(int i) 

Method Source Code

//package com.java2s;
/**/*from  ww w  . j ava 2 s  . c o m*/
 * Copyright (C) 2011 Rafael Bedia
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 * http://www.gnu.org/copyleft/gpl.html
 */

public class Main {
    /**
     * Converts an integer IP address into its text form.
     * 
     * @param i
     * @return
     */
    public static String intToIp(int i) {
        StringBuilder out = new StringBuilder(15);
        out.append((i >> 24) & 0xFF);
        out.append(".");
        out.append((i >> 16) & 0xFF);
        out.append(".");
        out.append((i >> 8) & 0xFF);
        out.append(".");
        out.append(i & 0xFF);

        return out.toString();
    }
}

Related

  1. int2IpAddressString(long i)
  2. int2ipstr(int addr)
  3. int2IpStr(long ip)
  4. intToIp(int address)
  5. intToIp(int i)
  6. intToIp(int i)
  7. intToIP(int intIP)
  8. intToIp(int ip)
  9. intToIP(int ipAddr)