j2me モバイル アプリケーションを 1 つ開発しました。ここで、クライアント側はモバイル IMEI 番号を確認したいと考えています。
取得方法がわかりません。この行を試しましたSystem.getProperty("com.nokia.IMEI");
が、null のみになります。
ノキア
System.getProperty("phone.imei");
System.getProperty("com.nokia.imei");
System.getProperty("com.nokia.mid.imei"); //especially for S40 devices
Note: Requires signed MIDlet. S60 3rd edition device does not requires signing to fetch this info.On Series 40 phones this requires that your MIDlet is signed to either operator or manufacturer domain, and this is only available in Series 40 3rd Edition, FP1
デバイス以降。ソニー・エリクソン
System.getProperty("com.sonyericsson.imei");
サムスン
System.getProperty("com.samsung.imei");
モトローラ
System.getProperty("IMEI");
System.getProperty("com.motorola.IMEI");
シーメンス
System.getProperty("com.siemens.IMEI");
LG
System.getProperty("com.lge.imei");
GET IMEI FROM J2MEこれを試し て、別の電話から imei を取得できます
System.getProperty(“microedition.platform”)
問題の適切な解決策を得るために、上記の呼び出しを と組み合わせることができます。