码迷,mamicode.com
首页 > 编程语言 > 详细

java执行ping命令

时间:2014-11-05 19:39:24      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   java   sp   div   on   

public static void get() throws IOException{
         String address="10.132.118.110";  
         
            Process process = Runtime.getRuntime().exec("ping "+address);  
            InputStreamReader r = new InputStreamReader(process.getInputStream());  
            LineNumberReader returnData = new LineNumberReader(r);  
     
            String returnMsg="";  
            String line = "";  
            while ((line = returnData.readLine()) != null) {  
                System.out.println(line);  
                returnMsg += line;  
            }  
              
            if(returnMsg.indexOf("100% loss")!=-1){  
                System.out.println("与 " +address +" 连接不畅通.");  
            }  
            else{  
                System.out.println("与 " +address +" 连接畅通.");  
            }  
    }

 

java执行ping命令

标签:style   blog   io   color   os   java   sp   div   on   

原文地址:http://www.cnblogs.com/azhqiang/p/4077052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!