jsp传递中文参数、空格以及表单内容换行问题解决小结

一、地址传递参数中文 / 空格问题
举例说明:
    String sContent = "
中文 参数 ";
   
如果不做任何处理就直接传递,中文也许没有问题(但不保证),但空格肯定会有问题,到接收页面无法识别。
解决办法 1 java.net.URLEncoder.encode(sContent,"gb2312"); 然后再传递。比如 url "accept.jsp?content="+sContent;
读取时,使用
String sc = request.getParameter("content");
sc = new String(sc.getBytes("iso-8859-1"),"gb2312");

解决办法2

传递前,先做以下替换

sContent=sContent.replaceAll("  ","%20");

接收到字符串之后,如果在td中显示,则需要使用

sContent=sContent.replaceAll("  "," ");//注意这里不是替换%20,而是替换空格。如果有中文,要先转码

如果在textarea中显示,则不需要处理。

 这样就没问题了。
二、回车换行问题
问题描述:
   
表单中的textArea中有换行的内容,提交之后保存到数据库,再读取出来的时候,没有换行,全部连在一起了。
解决:
1. 
在写入数据库的时候,加入
      sContent=sContent.replaceAll(" "," ");
    sContent=sContent.replaceAll("\r\n","<br/>");
      sContent=sContent.replaceAll("\n","<br/>");
2.
在读取的时候,如果要在textArea中显示,需要加入
    sc =
数据库中的content字段值 ;
    sc=sc.replaceAll("<br/>","\r\n");
    sc=sc.replaceAll("<br>","\r\n");
    sc=sc.replaceAll("&nbsp;"," ");
如果是直接在td中显示,则不需要转换 

 

 

你可能感兴趣的:(jsp,.net)