deal.jsp
上传用户:nbluoke
上传日期:2013-08-09
资源大小:4851k
文件大小:1k
源码类别:

教育系统应用

开发平台:

WORD

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
  2. <%!//处理中文字符串
  3.   public String codeString(String s){
  4. String str=s;
  5. try{
  6. byte b[]=str.getBytes("ISO-8859-1");
  7.   str=new String(b);
  8.   return str;
  9. }
  10. catch(Exception e){
  11. return str;
  12. }
  13. }
  14. %>
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  18. <title>无标题文档</title>
  19. </head>
  20. <body>
  21. <table width="89%" height="394" border="0">
  22.   <tr>
  23.   <%String str=codeString(request.getParameter("content"));%>
  24.   <%=str%>
  25.     <td width="78%" height="329" align="left" valign="top"> <form name="form1" method="post" action="">
  26.         <textarea name="HtmlContext"  cols="60" rows="15" id="HtmlContext"><%=str%></textarea>
  27.       </form></td>
  28.     <td width="22%">&nbsp;</td>
  29.   </tr>
  30.   <tr>
  31.     <td height="59">&nbsp;</td>
  32.     <td>&nbsp;</td>
  33.   </tr>
  34. </table>
  35. </body>
  36. </html>