0

j2me モバイル アプリケーションを 1 つ開発しました。ここで、クライアント側はモバイル IMEI 番号を確認したいと考えています。

取得方法がわかりません。この行を試しましたSystem.getProperty("com.nokia.IMEI");が、null のみになります。

4

3 に答える 3

4

ノキア

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");
于 2012-05-21T07:10:33.350 に答える
0

GET IMEI FROM J2MEこれを試し て、別の電話から imei を取得できます

于 2012-11-08T07:39:11.347 に答える
0

System.getProperty(“microedition.platform”)問題の適切な解決策を得るために、上記の呼び出しを と組み合わせることができます。

于 2012-05-21T11:33:16.763 に答える