獲取android手機序列號
阿新 • • 發佈:2019-01-31
這裡的序列號可能是廣義上的序列號,由底層屬性ro.serialname決定
通用的獲取方式
Java程式碼
在3.1的系統裡還可以這樣獲取
Java程式碼
String macSerial = null;
String str = "";
try {
Process pp = Runtime.getRuntime().exec(
"cat /sys/class/net/wlan0/address ");
InputStreamReader ir = new InputStreamReader(pp.getInputStream());
LineNumberReader input = new LineNumberReader(ir);
for (; null != str;) {
str = input.readLine();
if (str != null) {
macSerial = str.trim();// 去空格
break;
}
}
} catch (IOException ex) {
// 賦予預設值
ex.printStackTrace();
}
return macSerial;
}
通用的獲取方式
Java程式碼
- public static String getSerialNumber(){
- String serial = null;
- try {
- Class<?> c = Class.forName("android.os.SystemProperties");
-
Method get = c.getMethod("get"
- serial = (String) get.invoke(c, "ro.serialno");
- System.out.println(serial);
- }
- catch (Exception ignored) {
- }
- return serial;
- }
在3.1的系統裡還可以這樣獲取
Java程式碼
-
String serialName=android.os.Build.SERIAL;
開發Android應用中,我們常常需要裝置的唯一碼來確定客戶端。
Android 中的幾中方法,使用中常常不可靠
1. DEVICE_ID 假設我們確實需要用到真實裝置的標識,可能就需要用到DEVICE_ID。通過 TelephonyManager.getDeviceId()獲取,它根據不同的手機裝置返回IMEI,MEID或者ESN碼. 缺點:在少數的一些裝置上,該實現有漏洞,會返回垃圾資料 2. MAC ADDRESS 我們也可以通過Wifi獲取MAC ADDRESS作為DEVICE ID 缺點:如果Wifi關閉的時候,硬體裝置可能無法返回MAC ADDRESS.。 3. Serial Number android.os.Build.SERIAL直接讀取 缺點:在少數的一些裝置上,會返回垃圾資料 4. ANDROID_ID ANDROID_ID是裝置第一次啟動時產生和儲存的64bit的一個數, 缺點:當裝置被wipe後該數改變, 不適用。android 底層是 Linux,我們還是用Linux的方法來獲取:
1 cpu號:
檔案在: /proc/cpuinfo
通過Adb shell 檢視:
adb shell cat /proc/cpuinfo
2 mac 地址
檔案路徑 /sys/class/net/wlan0/address
adb shell cat /sys/class/net/wlan0/address
xx:xx:xx:xx:xx:aa
這樣可以獲取兩者的序列號,
方法確定,剩下的就是寫程式碼了
以Mac地址為例:
String getMac() {String macSerial = null;
String str = "";
try {
Process pp = Runtime.getRuntime().exec(
"cat /sys/class/net/wlan0/address ");
InputStreamReader ir = new InputStreamReader(pp.getInputStream());
LineNumberReader input = new LineNumberReader(ir);
for (; null != str;) {
str = input.readLine();
if (str != null) {
macSerial = str.trim();// 去空格
break;
}
}
} catch (IOException ex) {
// 賦予預設值
ex.printStackTrace();
}
return macSerial;
}