我是Java Android新手。從國家代碼獲取國家/地區名稱字符串int
我想在Locale得到使用國家代碼的國家名稱(字符串)(參考ISO 3166-1 numeric)
試圖做類似的東西(其中[...]。getCountry()的返回INT 826 ):
Locale countryName = new Locale("", String.valueOf(profile.getPersonnalInformation().getAddress().getCountry()));
並使用此得到國家的名字:countryName.getDisplayCountry()
應該正常返回我「英國」但不幸的是我有826
我該怎麼做?
在提前感謝你的幫助,
HTTPS ://stackoverflow.com/questions/14275868/get-country-name-from-country-code –
@MehdiKhademloo謝謝你,但我嘗試用int數做,而不是像你的例子中的字符串。我已經嘗試在String中投射我的int並使用它,但它不起作用,所以你的鏈接不能幫助我。在您發佈之前,我已經閱讀過它。 –