work > programming/android 디바이스에서 모든 국가 이름 가져오기 Hello M. J 2015. 5. 11. 14:44 Locale[] locales = Locale.getAvailableLocales(); for(int i=0 ; i<locales.length ; i++) { Locale loc = locales[i]; System.out.println("[" + i + "]"); System.out.println("getDisplayCountry() " + loc.getDisplayCountry()); System.out.println("getCountry() " + loc.getCountry() ); System.out.println("getDisplayLanguage() " + loc.getDisplayLanguage()); System.out.println("getLanguage() " + loc.getLanguage()); }