打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
java程序获得windows系统的一些参数(cmd指令运行返回结果)

//获得网卡物理地址以及ping指令返回结果

/*
 * 创建日期 2006-2-17
 *
 * TODO 要更改此生成的文件的模板,请转至
 * 窗口 - 首选项 - Java - 代码样式 - 代码模板
 */
package com.alpeace.app;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

/**
 * @author liubo
 *
 * TODO 要更改此生成的类型注释的模板,请转至
 * 窗口 - 首选项 - Java - 代码样式 - 代码模板
 */
public class GetWindowsMac {
   
   
    public GetWindowsMac(){
       
    }
   
    public static String getMACAddress() {

        String address = "";
        String os = System.getProperty("os.name");
        System.out.println(os);
        if (os != null && os.startsWith("Windows")) {
            try {
                String command = "cmd.exe /c ipconfig /all";
                Process p = Runtime.getRuntime().exec(command);
                BufferedReader br =
                        new BufferedReader(
                                new InputStreamReader(p.getInputStream()));
                String line;
                while ((line = br.readLine()) != null) {
                    if (line.indexOf("Physical Address") > 0) {                       
                        int index = line.indexOf(":");
                        index += 2;
                        address = line.substring(index);
                        break;
                    }
                }
                br.close();
                return address.trim();
            } catch (IOException e) {}
           
        }
        return address;
    }
   
    public static String getPing(String ip) {

        String ping = "";
        String os = System.getProperty("os.name");
        System.out.println(os);
        if (os != null && os.startsWith("Windows")) {
            try {
                String command = "cmd.exe /c ping "+ip+" /all";
                Process p = Runtime.getRuntime().exec(command);
                BufferedReader br =
                        new BufferedReader(
                                new InputStreamReader(p.getInputStream()));
                String line;
                while ((line = br.readLine()) != null) {
                    ping = ping + line +"/n";
                }
                br.close();
                return ping.trim();
            } catch (IOException e) {}
           
        }
        return ping;
    }

 

 public static void main(String[] args) {
     System.out.println(""+GetWindowsMac.getMACAddress());//获得物理地址
     System.out.println(""+GetWindowsMac.getPing("10.0.1.3")); //获得ping结果
    
 }

}

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
如何利用Java获取进程的信息(通过tasklist和cmd与Windows进行交互)
Java使用Runtime执行Linux命令用管理连接问题
用java实现修改系统的环境变量并使其不需重启就生效
如何用java启动windows命令行程序
JAVA调用系统命令或可执行程序
java根据地址从百度API获取经纬度
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服