안드로이드로 핑 테스트 하기

네트워크 체크할 때 사용했다.

String host = "192.168.0.100";
String cmd = "ping -c 1 -W 10 " + host;
try {
      Process proc = Runtime.getRuntime().exec(cmd);
      proc.waitFor();
      int result = proc.exitValue();
      Log.d("------result", result);
} catch (Exception e) {
      Log.d("------ping", e.getMessage());
}

 

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP