Read SIM card related information

Source: Internet
Author: User

Key code:

Telephonymanager TM = (Telephonymanager) this.getsystemservice (Context.telephony_service);

String IMEI = Tm.getdeviceid (); Remove IMEI

String Tel = tm.getline1number (); Remove the MSISDN, which is likely to be empty

String iccid =tm.getsimserialnumber (); Remove Iccid

String imsi =tm.getsubscriberid (); Remove IMSI

To add permissions:

<uses-permission android:name= "Android.permission.READ_PHONE_STATE"/>

Iccid:integrate Circuit card identity IC Cards identification code (cured in SIM card)

Iccid is the unique identification number of the IC card, consisting of 20 digits,

The encoding format is: XXXXXX 0MFSS yygxx XXXXX.

Described below: Top six carrier code: China Mobile: 898600;898602, China Unicom: 898601, Chinese telecom 898603

Judgment code:

String short_str=iccid.substring (0, 6);

if (Short_str.equals ("898600") | | Short_str.equals ("898602")) {
String chanel= "Move";
}else if (short_str.equals ("898601")) {
String chanel= "telecommunications";
}else if (short_str.equals ("898603")) {
String chanel= "Unicom";
}

Read SIM card related information

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.