i want to make a modification to my project and right now the project status is..... it is searches the available WiFi networks and shows the list with info of the network this works properly.Now i want to search and see the details of the devices connected to the network. Is there any way to find these devices ? Your comment will be useful for me, Thanks.

link|improve this question
feedback

2 Answers

Would you like to discover a specific device ? Or you need the list of all connected devices? The second I don't think is possible.

EDIT

Discovering specific devices:
Using UDP Broadcast. Some reference can be found here!

There are some protocols that are supported by some devices( routers, HDD, etc...), like UPNP!

If you develop a software on the device which you would like to discover you could create a UDP server listening on a specific port. Your client will just send a broadcast message on that port and your Server will send a response with the information you need. Here it is a simple example.

link|improve this answer
yes, i wanted to discover all.........but as you said it is not possible. so for to move further suggest me to search for specific device.Thanks. – patric Dec 9 '11 at 14:42
See my edited answer. – Gyuri Majercsik Dec 9 '11 at 15:12
Thanks for your useful and quick reply....i will check it out...Thanks. – patric Dec 9 '11 at 16:03
Hi Gyuri Majercsik, Thanks for the above link. I have tested it as an java application on eclipse and it is giving me response too. As i pass(hard core) a string message from client side it returns me a modified message. And now i am just confuse how to test it for android. – patric Dec 10 '11 at 15:00
Hi Gyuri Majercsik , when i go through the comments on the page systembash.com/content/a-simple-java-udp-server-and-udp-client .... and i follow the procedure for this to work on android, i am not getting how to execute it on android. Provide me some hint. Thanks. – patric Dec 10 '11 at 15:12
show 1 more comment
feedback

You can loop over the IP ranges, and "ping" them. It is not the best / fastest method (UDP is better) but, it works in many cases. The sample code below returns the list of the IP addresses connected to the current network.

private int LoopCurrentIP = 0;

public ArrayList<InetAddress> getConnectedDevices(String YourPhoneIPAddress) {
    ArrayList<InetAddress> ret = new ArrayList<InetAddress>();

    LoopCurrentIP = 0;

    String IPAddress = "";
    String[] myIPArray = YourPhoneIPAddress.split("\\.");
    InetAddress currentPingAddr;

    for (int i = 0; i <= 255; i++) {
        try {

            // build the next IP address
            currentPingAddr = InetAddress.getByName(myIPArray[0] + "." +
                    myIPArray[1] + "." +
                    myIPArray[2] + "." +
                    Integer.toString(LoopCurrentIP));

            // 50ms Timeout for the "ping"
            if (currentPingAddr.isReachable(50)) {

                ret.add(currentPingAddr);
            }
        } catch (UnknownHostException ex) {
        } catch (IOException ex) {
        }

        LoopCurrentIP++;
    }
    return ret;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.