String value = request.getParameter("form");
try{ value = new String(value.getBytes("8859_1"), "UTF-8"); }catch(java.io.UnsupportedEncodingException e)
{
System.err.println(e);
}
หรือ
try {
request.setCharacterEncoding("UTF-8");
} catch (UnsupportedEncodingException ex) {
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น