JSP的内置对象!

1:解决reuqest对象获取客户端提交的汉字信息时的乱码问题:

 String a = request.getParameter("address");
 byte baddress[] = a.getBytes("ISO-8859-1");
 a =new String(baddress);

 

为了方便使用,编写一个方法,可以调用:

public Stirng toChinese(String str)

                            throws java.io.UnsupportedEncodingException

                  {

                      byte b[]=str.getBytes("ISO-8859-1");

                      str=new String(b);

                      return str;

                   }

你可能感兴趣的:(JSP的内置对象!)