How to obtain the IMEI of a mobile phone in
Author: Chen yuefeng
From: http://blog.csdn.net/mailbomb
IMEI is short for internation mobile entity identification. You can enter * #06 # on your mobile phone to display this number. The length is 15 bits. It is globally unique and will never conflict with each other, therefore, it can be used as a sign to identify users.
The following method is used to obtain IMEI in j2_m3:
1. The Moto series phones can be obtained by reading the IMEI attribute of the system. The Code is as follows:
String IMEI = system. getproperty ("IMEI ");
2. The mobile phones of the Siemens series can be obtained by reading the com. Siemens. IMEI attribute of the system. The Code is as follows:
String IMEI = system. getproperty ("com. Siemens. IMEI ");
I don't know about other series of mobile phones. I hope you can complete them together.