java怎么獲取用戶客戶端mac地址
問題描述
怎么在java中獲取到用戶客戶端MAC地址,試過很多方法獲取到的都是獲取服務器端MAC地址,并且也要考慮用戶有多個網卡的情況,如果有多個網卡就會有多個mac地址,需要獲取聯網的網卡的mac地址,系統沒有使用反向代理。
問題解答
回答1:用java.net.NetworkInterface
Enumeration<NetworkInterface> nets = NetworkInterface.getNetworkInterfaces();for (NetworkInterface netint : Collections.list(nets)) { System.out.printf('Name: %sn', netint.getName()); for (InetAddress inetAddress : Collections.list(inetAddresses)) {System.out.printf('InetAddress: %sn', inetAddress); } System.out.printf('Hardware address: %sn', Arrays.toString(netint.getHardwareAddress())); ...}回答2:
你的這段代碼在哪運行就拿到的是哪的mac地址如果你是web應用,除非你的客戶端和你的應用服務器在同一個局域網,否則你拿不到的如果你是c/s應用,那就在c端獲取,在報文里傳給s端具體原因,可以看下OSI7層網絡模型
回答3:聲明本答案轉載,如需刪除,請告知。http://blog.csdn.net/yfkiss/a...
import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.net.InetAddress;import java.net.NetworkInterface;/** * 與系統相關的一些常用工具方法. * * @author lvbogun * @version 1.0.0 */public class SystemTool { /** * 獲取當前操作系統名稱. return 操作系統名稱 例如:windows xp,linux 等. */ public static String getOSName() {return System.getProperty('os.name').toLowerCase(); } /** * 獲取unix網卡的mac地址. 非windows的系統默認調用本方法獲取. * 如果有特殊系統請繼續擴充新的取mac地址方法. * * @return mac地址 */ public static String getUnixMACAddress() {String mac = null;BufferedReader bufferedReader = null;Process process = null;try { // linux下的命令,一般取eth0作為本地主網卡 process = Runtime.getRuntime().exec('ifconfig eth0'); // 顯示信息中包含有mac地址信息 bufferedReader = new BufferedReader(new InputStreamReader( process.getInputStream())); String line = null; int index = -1; while ((line = bufferedReader.readLine()) != null) {// 尋找標示字符串[hwaddr]index = line.toLowerCase().indexOf('hwaddr');if (index >= 0) {// 找到了 // 取出mac地址并去除2邊空格 mac = line.substring(index + 'hwaddr'.length() + 1).trim(); break;} }} catch (IOException e) { e.printStackTrace();} finally { try {if (bufferedReader != null) { bufferedReader.close();} } catch (IOException e1) {e1.printStackTrace(); } bufferedReader = null; process = null;}return mac; } /** * 獲取widnows網卡的mac地址. * * @return mac地址 */ public static String getWindowsMACAddress() {String mac = null;BufferedReader bufferedReader = null;Process process = null;try { // windows下的命令,顯示信息中包含有mac地址信息 process = Runtime.getRuntime().exec('ipconfig /all'); bufferedReader = new BufferedReader(new InputStreamReader( process.getInputStream())); String line = null; int index = -1; while ((line = bufferedReader.readLine()) != null) {System.out.println(line);// 尋找標示字符串[physicalindex = line.toLowerCase().indexOf('physical address');if (index >= 0) {// 找到了 index = line.indexOf(':');// 尋找':'的位置 if (index >= 0) {System.out.println(mac);// 取出mac地址并去除2邊空格mac = line.substring(index + 1).trim(); } break;} }} catch (IOException e) { e.printStackTrace();} finally { try {if (bufferedReader != null) { bufferedReader.close();} } catch (IOException e1) {e1.printStackTrace(); } bufferedReader = null; process = null;}return mac; } /** * windows 7 專用 獲取MAC地址 * * @return * @throws Exception */ public static String getMACAddress() throws Exception {// 獲取本地IP對象InetAddress ia = InetAddress.getLocalHost();// 獲得網絡接口對象(即網卡),并得到mac地址,mac地址存在于一個byte數組中。byte[] mac = NetworkInterface.getByInetAddress(ia).getHardwareAddress();// 下面代碼是把mac地址拼裝成StringStringBuffer sb = new StringBuffer();for (int i = 0; i < mac.length; i++) { if (i != 0) {sb.append('-'); } // mac[i] & 0xFF 是為了把byte轉化為正整數 String s = Integer.toHexString(mac[i] & 0xFF); sb.append(s.length() == 1 ? 0 + s : s);}// 把字符串所有小寫字母改為大寫成為正規的mac地址并返回return sb.toString().toUpperCase(); } /** * 測試用的main方法. * * @param argc 運行參數. * @throws Exception */ public static void main(String[] argc) throws Exception {String os = getOSName();System.out.println(os);if (os.equals('windows 7')) { String mac = getMACAddress(); System.out.println(mac);} else if (os.startsWith('windows')) { // 本地是windows String mac = getWindowsMACAddress(); System.out.println(mac);} else { // 本地是非windows系統 一般就是unix String mac = getUnixMACAddress(); System.out.println(mac);} }}
相關文章:
1. javascript - 下面的這段算法代碼求解釋2. javascript - 在top.jsp點擊退出按鈕后,right.jsp進行頁面跳轉,跳轉到login.jsp3. javascript - js 有什么優雅的辦法實現在同時打開的兩個標簽頁間相互通信?4. android - 哪位大神知道java后臺的api接口的對象傳到前端后輸入日期報錯,是什么情況?求大神指點5. css3 - 在sublime text里, 如何讓emmet生成的帶前綴css屬性垂直對齊?6. mac連接阿里云docker集群,已經卡了2天了,求問?7. javascript - 回調函數和閉包的關系8. java - spring-data Jpa 不需要執行save 語句,Set字段就可以自動執行保存的方法?求解9. [前端求職必看]前端開發面試題與答案精選_擴展問題10. 想找個php大神仿個網站。
