Here you can find the source of IntegerToInetAddress(int ipAddress)
public static InetAddress IntegerToInetAddress(int ipAddress) throws UnknownHostException
//package com.java2s; /**//from www . ja va2s . com * Copyright 2008 - CommonCrawl Foundation * * CommonCrawl licenses this file to you 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 IntegerToInetAddress(int ipAddress) throws UnknownHostException { byte[] array = new byte[4]; array[0] = (byte) ((ipAddress >> 24) & 0xFF); array[1] = (byte) ((ipAddress >> 16) & 0xFF); array[2] = (byte) ((ipAddress >> 8) & 0xFF); array[3] = (byte) (ipAddress & 0xFF); return InetAddress.getByAddress(array); } }