Search code examples
androidnetwork-programmingconnectivity

Android: How to check if the server is available?


I am developing an application which connects to the server. By now the login and data transmission works fine if theserver is available. The problem arises when the server is unavailable. In this case the method sends a login request and waits for the response.

Does anyone know how to check if the server is available (visible)?

The pseudocode of the simple logic that has to be implemented is the following:

  1. String serverAddress = (Read value from configuration file) //already done
  2. boolean serverAvailable = (Check if the server serverAddress is available)//has to be implemented
  3. (Here comes the logic which depends on serverAvailable)

Solution

  • He probably needs Java code since he's working on Android. The Java equivalent -- which I believe works on Android -- should be:

    InetAddress.getByName(host).isReachable(timeOut)