我已经完成了一个从Web服务器上的数据库读取的android应用程序(php,json,...)。如果服务器已关闭或未找到IP地址,则应用程序将显示:
不幸的是该应用已被停止。
我想改为显示自定义错误消息。示例“无法访问服务器”,应用程序继续正常运行。
如何检查服务器或IP地址是否可访问或可用以避免预览消息?
答案 0 :(得分: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;
}