How to convert one Stringwith characters decoded in code page 1252, into String, decoded in code page 1250.
for instance
String str1252 = "ê¹ś¿źæñ³ó";
String str1250 = convert(str1252);
System.out.print(str1250);
I want to find a function convert()such that the printed output is:
ęąśżźćńłó
These are Polish characters.
Thanks for any suggestions.
source
share