Can I please get code or an example to connect my android app to wifi device vie ip address and port number.

link|improve this question
Your question doesn't specify what you plan on doing once you've connected your android device via WIFI. I'm left to believe you are trying to write something specific to WIFI, but without knowing more details I can't really help you. – chubbard Jul 25 '11 at 15:13
I plan to create an android application which control robot, this application connects to the robot using wifi to send control commands. – Bashir Jul 25 '11 at 17:18
feedback

1 Answer

Whether you are talking over the 3G/4G Radio or connected to WiFi your code can't really tell the difference. And this is a good thing so we can write our communication over TCP and not really care how the device is going to send those packets. That means we write out HTTP code once, without care to the underlying protocols that will deliver it, so no matter what the transport mechanism our code works for now and if they create new layers in the future: 3G/4G/WIFI/USB Tethering/Bluetooth Tethering, etc.

For simple HTTP communication with a server across the internet here is a simple example:

protected String getUrlContent(String url) throws IOException {
    // Create client and set our specific user-agent string
    HttpClient client = new DefaultHttpClient();
    HttpGet request = new HttpGet(url);
    request.setHeader("User-Agent", userAgent);

    try {
        HttpResponse response = client.execute(request);

        // Check if server response is valid
        StatusLine status = response.getStatusLine();
        if (status.getStatusCode() != HTTP_STATUS_OK) {
            throw new IOException("Invalid response from server: " + status.toString());
        }

        // Pull content stream from response
        HttpEntity entity = response.getEntity();
        InputStream inputStream = entity.getContent();

        ByteArrayOutputStream content = new ByteArrayOutputStream();

        // Read response into a buffered stream
        int readBytes = 0;
        byte[] sBuffer = new byte[8096];
        while ((readBytes = inputStream.read(sBuffer)) != -1) {
            content.write(sBuffer, 0, readBytes);
        }

        // Return result from buffered stream
        if (content.size() > 0)
            return new String(content.toByteArray());
        else
            return "";
}

If you want to have a persistent connection to your robot. I'd just simply use a good old fashion socket:

public class RemoteRobot {
    Socket robotSocket;
    PrintWriter robotWriter;
    BufferedReader robotReader;

    public void connect( String host, int port ) {
        robotSocket = new Socket( host, port );

        robotWriter = new PrintWriter( new OutputStreamWriter( socket.getOutputStream() ) );
        robotReader = new BufferedReader( new InputStreamReader( socket.getInputStream() );
    }

    public boolean sendHello() {
        robotWriter.println("Hello");
        String acknowledged = robotReader.readLine();
        return acknowledged.equals("OK");
    }

    public Response send( Command command ) {
        Response response = command.send( robotWriter, robotReader );
        return response;
    }

    public void close() {
        robotWriter.close();
        robotReader.close();
        robotSocket.close();
}

That's roughly how you'd use raw sockets to communicate with the robot. It doesn't matter if communication is happening over WIFI or not. It's really whether or not you can access the host and port using the connect() method. You could bake the commands into the RemoteRobot class with methods like sendHello(), sendWalk(), sendTalk(), etc. I just used the extensible Command/Response pattern here because it was shorter. But, if your command set is fairly fixed I'd say have all known commands on the RemoteRobot class to encapsulate that more.

I would NOT worry about using WIFI only.

link|improve this answer
One common reason wifi might be important is that the robot is most likely behind one or more firewalls and NATs (such as a home wifi access point) which won't permit incoming traffic from the external Internet - hence being on the same wifi subnet as the robot is a requirement to directly initiate communication with it. Otherwise an intermediate external server is required, at least to help with the connection setup. – Chris Stratton Jul 25 '11 at 19:09
That's my point. All of that junk doesn't matter when you're looking at it from a TCP level. Either you can see it (i.e. your packets will route) or you can't. But why you can't see it is immaterial, and you don't have to do anything special - from a code perspective - to explicitly handle it. If you can't see the thing an exception will get thrown and you can tell the user "Hey you need to turn on WIFI and on the same network as your robot." – chubbard Jul 25 '11 at 20:26
Do I need to put a server code in robot side ? – Bashir Jul 28 '11 at 12:32
and how can I test the wifi connection code for my android application without use of the robot..thank you for you feedback. – Bashir Jul 28 '11 at 12:38
Yes if you want your android application to control a robot. The robot will have to have a server running on it to receive commands from the phone. If you want to test your android code without connecting to an actual robot build a simple server in Java that responds to the commands like the real robot. You can then run that server on your machine and connect to it from your phone. The android phone really can't tell the difference between real robot and mock robot server. – chubbard Jul 28 '11 at 17:58
show 1 more comment
feedback

protected by Community Apr 19 at 12:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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