hi,encoding String value?
hi,
[code][
PrintWriter out = new PrintWriter(new OutputStreamWriter(res.getOutputStream(), "UTF8"), true);
the above line working well, i can able to convert to UTF-8 encoding.
how to convert string values to URF-8 .
any one can convert the following lines to UTF-8
StringWriter writer = new StringWriter();
OutputStream out = response.getOutputStream();
out.write(writer.toString().getBytes());
/code]
thanks
siva

