Hello
how do i fetch the information of my nokia mobile on my midlet. i want to print the details of mobile phone on midlet form.
is there any J2ME code available for this by which i can fetch mobile version's no, its series n all
Hello
how do i fetch the information of my nokia mobile on my midlet. i want to print the details of mobile phone on midlet form.
is there any J2ME code available for this by which i can fetch mobile version's no, its series n all
Thanx
Pooja
i have searched about it but did not find any information in j2me. ya there is code available for symbian but not for j2me. so if u know any link about aforementioned problem in j2me then please paste the link.
Thanx
Pooja
Hi Pooj,
Can you tell which kind mobile information you required.
There is System.getProperty("") available in j2me to get infomation on mobile like IMI number an other thinks also.
TO read more about System Properties go to the forum nokia liberary.
Thanks
Avdhesh
On Nokia devices, you will get the model and firmware version by:
You will also get useful information from other devices, like Sony Ericsson, but many devices will just return "j2me".Code:String platform = System.getProperty("microedition.platform");
Graham.