try:
             姓名:<%=strToCn(t1)%><%=strToCn(t2)%>;      public String strToCn(String strIn)
      {
            byte[] byte1 = strIn.getBytes();
            String temp = "";
            try
            {
                  temp = new String(byte1, "ISO8859_1");
            }
            catch (Exception e)
            {
            }
            return temp;
      }