Archive for category Networking

Get IP address of all the hosts connected with your system

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);

Read the rest of this entry »

No Comments