Hi all,
Could someone please tell me how can I get the timezone information of the N95 nokia mobile to use in my MIDlet?
Thank you for your advice.
Best regards.
Hi all,
Could someone please tell me how can I get the timezone information of the N95 nokia mobile to use in my MIDlet?
Thank you for your advice.
Best regards.
In theory:
If you're in India, this might fail on some devices, as some don't correctly handle half-hour time zones. You might get GMT+05:00 instead of GMT+05:30.Code:TimeZone tz = TimeZone.getDefault();
Graham.