网站底部显示百度站点地图,公司年前做网站好处,互联网金融网站建设,免费网站建设图书下载您可以使用MCC MNC获取SIM卡国家/地区,它是SIM配置的,与您所在的网络无关.Configuration config getResources().getConfiguration();int countryCode config.mcc;您可以在此处找到MCC列表MccTable.java例如,西班牙是214,法国是208MCC should work on all GSM devices with S…您可以使用MCC MNC获取SIM卡国家/地区,它是SIM配置的,与您所在的网络无关.Configuration config getResources().getConfiguration();int countryCode config.mcc;您可以在此处找到MCC列表MccTable.java例如,西班牙是214,法国是208MCC should work on all GSM devices with SIM card but it is unreliable on CDMA networksif (telephonyManager.getPhoneType() TelephonyManager.PHONE_TYPE_CDMA) {Class c Class.forName(android.os.SystemProperties);Method get c.getMethod(get, String.class);// Gives MCC MNCString homeOperator ((String) get.invoke(c, ro.cdma.home.operator.numeric));String country homeOperator.substring(0, 3); // the last three digits is MNC} else {Configuration config getResources().getConfiguration();int countryCode config.mcc;}