Is there any way to retreive the ISO Country Code/Country programmatically in Blackberry 5.0/6/0 devices
How to get ISO CountryCode , Country Code programmatically in blackberry?
386 views Asked by Rakesh At
1
Is there any way to retreive the ISO Country Code/Country programmatically in Blackberry 5.0/6/0 devices
You can obtain the country from the mobile network (if a SIM card is present). This is called Mobile Country Code. It is a number that you can then map to a string. In the API you have
GPRSInfo.getHomeMCC
. You can also callRadioInfo.getMCC
and evenRadioInfo.getNetworkCountryCode
, that will already return the text if the carrier supports it.And to get the ISO code of the device language, you can call
Locale.getDefaultForSystem().getCountry()
.