Hi all,
I am using getBytes() method in Java to encode the String,
When I encode the String some string values does not Encode..
The Code is
String psString ="ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö";
psString = new String(psString.getBytes("UTF-8"));
I am Using Netbeans tool for Java.
In Windows XP OS , it converts in to Encode String and coming to Linux it does not convert the String..
Can anyone help me to out of this Problem?
Help Should be highly Appericiated..
Thanks in Advance,
Myl