ping外网

Posted 小毛驴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ping外网相关的知识,希望对你有一定的参考价值。

  1. /** 
  2.      * @author suncat 
  3.      * @category 判断是否有外网连接(普通方法不能判断外网的网络是否连接,比如连接上局域网) 
  4.      * @return 
  5.      */  
  6.     public static final boolean ping() {  
  7.   
  8.         String result = null;  
  9.         try {  
  10.                 String ip = "www.baidu.com";// ping 的地址,可以换成任何一种可靠的外网  
  11.                 Process p = Runtime.getRuntime().exec("ping -c 3 -w 100 " + ip);// ping网址3次  
  12.                 // 读取ping的内容,可以不加  
  13.                 InputStream input = p.getInputStream();  
  14.                 BufferedReader in = new BufferedReader(new InputStreamReader(input));  
  15.                 StringBuffer stringBuffer = new StringBuffer();  
  16.                 String content = "";  
  17.                 while ((content = in.readLine()) != null) {  
  18.                         stringBuffer.append(content);  
  19.                 }  
  20.                 Log.d("------ping-----", "result content : " + stringBuffer.toString());  
  21.                 // ping的状态  
  22.                 int status = p.waitFor();  
  23.                 if (status == 0) {  
  24.                         result = "success";  
  25.                         return true;  
  26.                 } else {  
  27.                         result = "failed";  
  28.                 }  
  29.         } catch (IOException e) {  
  30.                 result = "IOException";  
  31.         } catch (InterruptedException e) {  
  32.                 result = "InterruptedException";  
  33.         } finally {  
  34.                 Log.d("----result---", "result = " + result);  
  35.         }  
  36.         return false;  
  37. }  

以上是关于ping外网的主要内容,如果未能解决你的问题,请参考以下文章

win10内网外网智能访问

Liunx双网卡(内网外网)同时使用

[NET]什么是公网私网内网外网?

树莓派 双网卡配置

内网外网同时连接方法

虚拟机可以ping到外网,但是外网不能ping到虚拟机,请问该如何设置。