想做一個web手機簽到系統,為了防止同學用其他同學的手機簽到,所以要記住每個同學手機的。
簽到的基本流程是同學用手機連上特定的wifi,然後用手機浏覽器登陸某個局域網IP,在出來的頁面那裡簽到。
唯一標識(mac地址或者IMEI之類的),這樣這個同學就只能用這台手機簽到了。
那麼問題來了?請問如何在java後台通過HttpServletRequest或者其他方法獲取到手機的唯一標識,而且所有手機都是連上了同一個路由器的局域網的;同時為了防止同學
用電腦簽到,最好能判斷客戶端的操作系統類型。
謝謝大家,我已經有解決方法了。通過arp協議,可以拿到客戶端的mac地址:
1. 首先拿到客戶端的ip:String ip = request.getRemoteAddr();
2. 然後通過Ip獲得mac地址:
windows下代碼:
String macAdd = "";
String arpCMD = "arp -a ";
try {
//Runtime.getRuntime().exec(pingCMD + ip);
String string;
Process process = Runtime.getRuntime().exec(arpCMD + ip);
InputStreamReader inputStreamReader = new InputStreamReader(process.getInputStream());
LineNumberReader lineNumberReader = new LineNumberReader(inputStreamReader);
for (int i = 0; i < 100; i++) {
string = lineNumberReader.readLine();
//System.out.println(string);
if (string != null) {
if (string.indexOf(ip) > 1) {
macAdd = string.substring(string.indexOf("at") + 3, string.indexOf("at") + 20);
return macAdd;
}
}
}
} catch (Exception e) {
e.printStackTrace();
return null;
// TODO: handle exception
}
return macAdd;
Linux下只需把arpCMD = "arp -a " 改成 arpCMD = "arp -n ";就可以了