Esempio n. 1
0
 public static String getCountryName(String code) {
   try {
     return CountryCode.getByCode(code).getName();
   } catch (Exception e) {
     return "";
   }
 }