zoukankan      html  css  js  c++  java
  • java获取mac地址屏蔽ip封mac地址

    package org.xiazdong.utils.ip;
    
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    public class IP2MACUtils {
    	public static String getMacAddress(String ip) {
    		String macAddress = "";
    		macAddress = getMacInWindows(ip).trim();
    		if (macAddress == null || "".equals(macAddress)) {
    			macAddress = getMacInLinux(ip).trim();
    		}
    		return macAddress;
    	}
    
    	private static String getMacInWindows(final String ip) {
    		String result = "";
    		String[] cmd = { "cmd", "/c", "ping " + ip };
    		String[] another = { "cmd", "/c", "arp -a" };
    
    		String cmdResult = callCmd(cmd, another);
    		result = filterMacAddress(ip, cmdResult, "-");
    
    		return result;
    	}
    
    	private static String filterMacAddress(final String ip,
    			final String sourceString, final String macSeparator) {
    		String result = "";
    		String regExp = "((([0-9,A-F,a-f]{1,2}" + macSeparator
    				+ "){1,5})[0-9,A-F,a-f]{1,2})";
    		Pattern pattern = Pattern.compile(regExp);
    		Matcher matcher = pattern.matcher(sourceString);
    		while (matcher.find()) {
    			result = matcher.group(1);
    			if (sourceString.indexOf(ip) <= sourceString.lastIndexOf(matcher
    					.group(1))) {
    				break; // 如果有多个IP,只匹配本IP对应的Mac.
    			}
    		}
    
    		return result;
    	}
    
    	private static String callCmd(String[] cmd, String[] another) {
    		String result = "";
    		String line = "";
    		try {
    			Runtime rt = Runtime.getRuntime();
    			Process proc = rt.exec(cmd);
    			proc.waitFor(); // 已经执行完第一个命令,准备执行第二个命令
    			proc = rt.exec(another);
    			InputStreamReader is = new InputStreamReader(proc.getInputStream());
    			BufferedReader br = new BufferedReader(is);
    			while ((line = br.readLine()) != null) {
    				result += line;
    			}
    		} catch (Exception e) {
    			e.printStackTrace();
    		}
    		return result;
    	}
    
    	private static String callCmd(String[] cmd) {
    		String result = "";
    		String line = "";
    		try {
    			Process proc = Runtime.getRuntime().exec(cmd);
    			InputStreamReader is = new InputStreamReader(proc.getInputStream());
    			BufferedReader br = new BufferedReader(is);
    			while ((line = br.readLine()) != null) {
    				result += line;
    			}
    		} catch (Exception e) {
    			e.printStackTrace();
    		}
    		return result;
    	}
    
    	private static String getMacInLinux(final String ip) {
    		String result = "";
    		String[] cmd = { "/bin/sh", "-c", "ping " + ip + " -c 2 && arp -a" };
    		String cmdResult = callCmd(cmd);
    		result = filterMacAddress(ip, cmdResult, ":");
    
    		return result;
    	}
    
    }
    


    作者:xiazdong
    出处:http://blog.xiazdong.info
    本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。
  • 相关阅读:
    sikiA计划问题记录
    列表+泛型
    查看别人项目找代码的方法
    Unity3d 异常与解决方案集合(持续)
    实现继承+接口继承+虚方法+隐藏方法+this/base+抽象类+密封类/方法+修饰符
    定义类+类实例化+属性+构造函数+匿名类型var+堆与栈+GC回收机制+值类型与引用类型
    局部变量和成员变量的区别
    数组元素二分查找(折半查找)
    数组元素冒泡排序
    数组元素选择排序
  • 原文地址:https://www.cnblogs.com/xiazdong/p/3058070.html
Copyright © 2011-2022 走看看