Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 用ping的方法判斷當前網絡是否可用

Android 用ping的方法判斷當前網絡是否可用

編輯:關於Android編程

判斷網絡的情況中,有個比較麻煩的情況就是連上了某個網絡,但是那個網絡無法上網 ,,, = =

想到了用ping指令來判斷,經測試,可行~ ~ ~


private static final boolean ping() {

String result = null;

try {

String ip = "www.baidu.com";// 除非百度掛了,否則用這個應該沒問題~

Process p = Runtime.getRuntime().exec("ping -c 3 -w 100 " + ip);//ping3次


// 讀取ping的內容,可不加。

InputStream input = p.getInputStream();

BufferedReader in = new BufferedReader(new InputStreamReader(input));

StringBuffer stringBuffer = new StringBuffer();

String content = "";

while ((content = in.readLine()) != null) {

stringBuffer.append(content);

}

Log.i("TTT", "result content : " + stringBuffer.toString());


// PING的狀態

int status = p.waitFor();

if (status == 0) {

result = "successful~";

return true;

} else {

result = "failed~ cannot reach the IP address";

}

} catch (IOException e) {

result = "failed~ IOException";

} catch (InterruptedException e) {

result = "failed~ InterruptedException";

} finally {

Log.i("TTT", "result = " + result);

}

return false;

}




  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved