I want to get all languages using this code:
public List<String> getGeneratePreferedLanguagesList()
{
String[] languageCodes = Locale.getISOLanguages();
List<String> list = new ArrayList<>();
for (String cc : languageCodes)
{
list.add(new Locale("", cc).getDisplayLanguage());
}
Collections.sort(list);
return list;
}
But the final list is empty. Do you know where I'm wrong?