Is it possible to sort the languages other than English at the runtime? I have something like this so far:
String bug_arr={"Инсталиране на безжична връзка","Инсталиране на безжична връзка","Инструкции за безопасност"};
String arabic_arr={"رحمن","مدينة"};
String en_arr={"Hello","Air"};
Can this be sorted - Arrays.sort(bug_arr);
?
Unfortunately when i tried this, I got a message saying 'Java/Eclipse: Some characters cannot be mapped using “Cp1252″ character encoding'.
Anyone have any idea ?