如何在使用J2ME编写的应用程序中获取网络运营商名称?
我最近试图在诺基亚s40上开发一个应用程序,该应用程序应该拥有对特定网络运营商的独占访问权限。是否有这样的API或库?
答案 0 :(得分:3)
没有类似的东西。但您可以从IMSI获取MNC和MCC信息。有了这些信息,您就可以获得运营商名称
示例
String imsi = System.getProperty("IMSI"); // Example 234103530089555
String mcc = imsi.substring(0,3); // 234 (UK)
String mnc = imsi.substring(3,5); // 10 (O2)
您可以将信息发送到您的数据库,以获取国家/地区,网络运营商,网络名称和状态
有关IMSI
的更多信息,请参阅http://www.numberingplans.com/?page=analysis&sub=imsinr=======更新=====
请注意,这取决于手机类型。以下是我所知道的不同格式......更多内容仍然存在。
System.getProperty("phone.imei");
System.getProperty("com.nokia.IMEI");
System.getProperty("com.nokia.mid.imei");
System.getProperty("com.sonyericsson.imei");
System.getProperty("IMEI");
System.getProperty("com.motorola.IMEI");
System.getProperty("com.samsung.imei");
System.getProperty("com.siemens.imei");
System.getProperty("imei");