得到IMSI信息

来源:互联网 发布:档案管理系统软件源码 编辑:程序博客网 时间:2024/04/30 07:30
package com.dzl.cn;import android.app.Activity;import android.content.Context;import android.os.Bundle;import android.telephony.TelephonyManager;import android.widget.TextView;public class MainActivity extends Activity {    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);                TelephonyManager tm = (TelephonyManager)         this.getSystemService(Context.TELEPHONY_SERVICE);//              String str = "";          str += "DeviceId(IMEI) = " + tm.getDeviceId() + "\n";            str += "DeviceSoftwareVersion = " + tm.getDeviceSoftwareVersion() + "\n";            str += "Line1Number = " + tm.getLine1Number() + "\n";            str += "NetworkCountryIso = " + tm.getNetworkCountryIso() + "\n";            str += "NetworkOperator = " + tm.getNetworkOperator() + "\n";            str += "NetworkOperatorName = " + tm.getNetworkOperatorName() + "\n";            str += "NetworkType = " + tm.getNetworkType() + "\n";            str += "PhoneType = " + tm.getPhoneType() + "\n";            str += "SimCountryIso = " + tm.getSimCountryIso() + "\n";            str += "SimOperator = " + tm.getSimOperator() + "\n";            str += "SimOperatorName = " + tm.getSimOperatorName() + "\n";            str += "SimSerialNumber = " + tm.getSimSerialNumber() + "\n";            str += "SimState = " + tm.getSimState() + "\n";            str += "SubscriberId(IMSI) = " + tm.getSubscriberId() + "\n";            str += "VoiceMailNumber = " + tm.getVoiceMailNumber() + "\n";            TextView sys = (TextView) findViewById(R.id.sys);          sys.setText(str);              }            public void fetch_status(){          TelephonyManager tm = (TelephonyManager)         this.getSystemService(Context.TELEPHONY_SERVICE);//              String str = "";          str += "DeviceId(IMEI) = " + tm.getDeviceId() + "\n";            str += "DeviceSoftwareVersion = " + tm.getDeviceSoftwareVersion() + "\n";            str += "Line1Number = " + tm.getLine1Number() + "\n";            str += "NetworkCountryIso = " + tm.getNetworkCountryIso() + "\n";            str += "NetworkOperator = " + tm.getNetworkOperator() + "\n";            str += "NetworkOperatorName = " + tm.getNetworkOperatorName() + "\n";            str += "NetworkType = " + tm.getNetworkType() + "\n";            str += "PhoneType = " + tm.getPhoneType() + "\n";            str += "SimCountryIso = " + tm.getSimCountryIso() + "\n";            str += "SimOperator = " + tm.getSimOperator() + "\n";            str += "SimOperatorName = " + tm.getSimOperatorName() + "\n";            str += "SimSerialNumber = " + tm.getSimSerialNumber() + "\n";            str += "SimState = " + tm.getSimState() + "\n";            str += "SubscriberId(IMSI) = " + tm.getSubscriberId() + "\n";            str += "VoiceMailNumber = " + tm.getVoiceMailNumber() + "\n";            TextView sys = (TextView) findViewById(R.id.sys);          sys.setText(str);     }  }

原创粉丝点击