0

我已经完成了一个从位于 Web 服务器(php、json、...)上的数据库读取的 android 应用程序。如果服务器关闭或找不到 IP 地址,应用程序将显示:

不幸的是,该应用程序已停止。

我想改为显示自定义错误消息。例如“无法访问服务器”,应用程序继续正常工作。

如何检查服务器或 IP 地址是否可访问或可用以避免预览消息?

4

1 回答 1

0

这段代码解决的问题:

public static boolean ping()
{
 System.out.println(" executeCammand");
    Runtime runtime = Runtime.getRuntime();
    try
    {
        Process  mIpAddrProcess = runtime.exec("/system/bin/ping -c 1 "+server);
        int mExitValue = mIpAddrProcess.waitFor();
         if(mExitValue==0){
            return true;
        }else{
            return false;
        }
    }
    catch (InterruptedException ignore)
    {

    } 
    catch (IOException e) 
    {

    }
    return false;
}
于 2013-07-03T08:49:49.490 回答