I have one field in Database with varchar field in which i am storing Thai Sentence (in the form of Unicode ).
What i need is to parse the Unicode characters into the proper String which correctly show thai characters .
My code for displaying thai Characters with the help of Locale object
using
Oracle Docs!
is as follows.
Locale thaiLocale_ = new Locale("th", "TH", "TH");
NumberFormat nf = NumberFormat.getNumberInstance(thaiLocale_);
double theDig_Doub =573.34
String outputString = new String();
outputString =nf.format(theDig_Doub);
i need the code for Showing sequence of Thai characters.
The following code works for me ,for displaying Thai Language in NetBeans.
where rs is the ResultSet from the Data Base.