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

java获取 ip mac 地址

时间:2016-06-21 20:56:26      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:java获取 ip mac 地址

package cn.aresoft.webapi.jiyu.utils;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.util.ArrayList;
import java.util.Formatter;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Properties;
public class OSUtil {

    //通过截取cmd流方式得到计算机的配置信息(不好)  
    public static List<String> getIpAddress(){  
        Process p = null;  
        List<String> address  = new ArrayList<String>();  
        try{  
            p = new ProcessBuilder("ipconfig","/all").start();  
        }catch(Exception e){  
            return address;  
        }  
        StringBuffer sb = new StringBuffer();  
        //读取进程输出值  
        InputStream inputStream = p.getInputStream();  
        BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));  
        String s = "";  
        try{  
            while((s=br.readLine())!=null){  
                sb.append(s+"\n");  
            }  
        }catch(Exception e){  
            e.printStackTrace();  
        }finally{  
            try{  
                inputStream.close();  
            }catch(Exception e){  
                e.printStackTrace();  
            }  
        }  
        System.out.println(sb);  
        return address;  
    }  

    public static void getIpconfig(){  
        Map<String,String> map = System.getenv();  
        System.out.println(map.get("USERNAME"));//获取用户名  
        System.out.println(map.get("COMPUTERNAME"));//获取计算机名  
        System.out.println(map.get("USERDOMAIN"));//获取计算机域名  
    }  
    //得到计算机的ip地址和mac地址  
    public static Map<String,String> getConfig(){  
        Map<String,String> map=new HashMap<String,String>();
        try{  
            InetAddress address = InetAddress.getLocalHost();  
            NetworkInterface ni = NetworkInterface.getByInetAddress(address);  
            //ni.getInetAddresses().nextElement().getAddress();  
            byte[] mac = ni.getHardwareAddress();  
            String sIP = address.getHostAddress();  
            String sMAC = "";  
            Formatter formatter = new Formatter();  
            for (int i = 0; i < mac.length; i++) {  
                sMAC = formatter.format(Locale.getDefault(), "%02X%s", mac[i],  
                        (i < mac.length - 1) ? "-" : "").toString();  
            }  
            System.out.println("IP:" + sIP);  
            System.out.println("MAC:" + sMAC);
            map.put("IP", sIP);
            map.put("MAC", sMAC);

        }catch(Exception e){  
            e.printStackTrace();  
        }
        return map;
    }  
    //得到计算机的ip,名称,操作系统名称,操作系统版本  
    public static void Config(){  
        try{  
            InetAddress addr = InetAddress.getLocalHost();   
            String ip=addr.getHostAddress().toString(); //获取本机ip  
            String hostName=addr.getHostName().toString(); //获取本机计算机名称  
            System.out.println("本机IP:"+ip+"\n本机名称:"+hostName);  
            Properties props=System.getProperties();  
            System.out.println("操作系统的名称:"+props.getProperty("os.name"));  
            System.out.println("操作系统的版本:"+props.getProperty("os.version"));   
        }catch(Exception e){  
            e.printStackTrace();  
        }  
    }  
    
    
    public static void main(String[] args) {
        getConfig();
    }

}

java获取 ip mac 地址

标签:java获取 ip mac 地址

原文地址:http://xuliangjun.blog.51cto.com/7398089/1791468

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