用它处理一下传过来的字符串<%!
//改中文字符串
public String getStr(String str)
{
   try
     {
      String temp_p=str;
      byte temp_t[]=temp_p.getBytes("ISO-8859-1");
      String temp=new String(temp_t);
      return temp;
     }
   catch(Exception fe)
      {
      return fe.getMessage();
      }
}
%>