I\'m creating a simple program with the possibility to change the language and I would convert the list of properties in the file myBundle.properties in a String array.
Se if replacing
Enumeration keys = labels.getKeys();
with
List keys = Collections.list( labels.getKeys() ); Collections.sort(keys);
helps