java通过ip获取客户端Mac地址的小例子

时间:2021-12-22 06:37:07 


package com.yswc.dao.sign;

import java.io.BufferedReader;

import java.io.InputStreamReader;

import java.util.regex.Matcher;

import java.util.regex.Pattern;

/**
 *
 * 获取MAC地址
 *
 * @author
 *
 * 2011-12
 *
 */

public class GetMacAddress {

public 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;
}
/**
 *
 *
 *
 * @param cmd
 *            第一个命令
 *
 * @param another
 *            第二个命令
 *
 * @return 第二个命令的执行结果
 *
 */

public 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;
}

/**
 *
 *
 *
 * @param ip
 *            目标ip,一般在局域网内
 *
 * @param sourceString
 *            命令处理的结果字符串
 *
 * @param macSeparator
 *            mac分隔符号
 *
 * @return mac地址,用上面的分隔符号表示
 *
 */

public 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;
}

/**
 *
 *
 *
 * @param ip
 *            目标ip
 *
 * @return Mac Address
 *
 *
 *
 */

public 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;
}
 /**
  *
  * @param ip
  *            目标ip
  * @return Mac Address
  *
  */
 public 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; 
 } 

 /**
  * 获取MAC地址
  *
  * @return 返回MAC地址
  */
 public static String getMacAddress(String ip){
     String macAddress = "";
     macAddress = getMacInWindows(ip).trim();
     if(macAddress==null||"".equals(macAddress)){
         macAddress = getMacInLinux(ip).trim();
     }
     return macAddress;
 }
 public static void main(String[] args) {
 String mac=getMacAddress("192.168.1.102");
 System.out.println("mac:"+mac);
}

}

标签:ip,Mac
0
投稿

猜你喜欢

  • 分析JVM源码之Thread.interrupt系统级别线程打断

    2023-07-31 17:15:23
  • 使用Jenkins来构建GIT+Maven项目的方法步骤

    2021-11-15 07:57:33
  • maven <repositories>标签和<pluginRepositories>标签的使用

    2022-09-26 01:06:33
  • springboot自定义starter方法及注解实例

    2022-11-02 10:52:08
  • jQuery 动画效果代码分享

    2023-11-24 00:10:12
  • Java实现人机猜拳小游戏

    2023-10-07 16:11:37
  • eclipse 中的javac命令与java命令

    2023-08-19 14:16:57
  • WebService教程详解(一)

    2022-02-26 09:59:50
  • Spring注解@Configuration和@Component区别详解

    2022-11-05 02:04:18
  • Java IO流和文件操作实现过程解析

    2022-03-10 02:08:13
  • Java中异常处理之try和catch代码块的使用

    2021-11-21 13:30:23
  • Spring Cloud Gateway替代zuul作为API网关的方法

    2023-05-03 07:19:58
  • Java设计模式之享元模式

    2022-09-23 12:16:07
  • springboot集成redis并使用redis生成全局唯一索引ID

    2023-11-28 05:42:39
  • Mybatis之typeAlias配置的3种方式小结

    2023-11-26 16:42:14
  • C# Winform消息通知之系统本地通知local toast notification

    2023-02-01 04:14:02
  • ShardingSphere解析SQL示例详解

    2023-11-23 13:57:55
  • linux系统 java环境变量的配置方法

    2022-12-10 09:34:11
  • SpringBoot实现本地存储文件上传及提供HTTP访问服务的方法

    2022-09-14 19:09:12
  • Java Springboot的目的你知道吗

    2022-12-20 14:16:24
  • asp之家 软件编程 m.aspxhome.com