| Reply | « Previous Thread | Next Thread » |
|
I found on a Symbian page:
http://www3.symbian.com/faq.nsf/f91c9c36047592a3802569fc00535d0a/755962c83e20287e80256b27004fdd46?OpenDocument Platform: Symbian OS v6.0, Symbian OS v6.1 Question: Can I access the IMEI number of a phone from code on Symbian OS? Answer: The IMEI number is accessible through a native ETel API. Unfortunately, for C++ developers this is not a publicly released API but is part of the advanced GSM API to which only licensees have access. However the API is accessible from Java code using the methods of JTAPI mobile, as follows: JtapiPeer peer = JtapiPeerFactory.getJtapiPeer("com.symbian.javax.telephony.EpocJtapiPeer"); provider = peer.getProvider("EpocGsmMobileProvider"); Address[] addresses = provider.getAddresses(); origAddress = addresses[0]; println("Host number is " + origAddress.getName()); Terminal[] terminals = provider.getTerminals(); origTerminal = (MobileTerminal) terminals[0]; println("IMEI number is " + origTerminal.getTerminalId()); But AFAIK JTAPI is not accessible from J2ME just from personal java. |
|
Dear all,
In J2ME , how can I get the self mobile phone number ? Thanks |
| maccuspoon |
| View Public Profile |
| Find all posts by maccuspoon |
|
Hello,
Unfortunately currently you can't get mobile phone number or IMEI code from phone to a MIDlet. Regards, Petteri / Forum Nokia |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|