Archive for category Networking
Get IP address of all the hosts connected with your system
Posted by pardeep in Java, Networking, Open Source Technologies on September 3, 2011
Here , is the very simple code to get IP address of hosts connected with your system:
import java.net.*;
public class GetAll{
public static void main(String args[]){
try{
InetAddress localhost = InetAddress.getLocalHost();
// this code assumes IPv4 is used
byte[] ip = localhost.getAddress();
for (int i = 1; i <= 254; i++)
{
ip[3] = (byte)i;
InetAddress address = InetAddress.getByAddress(ip);
