JSP編寫WAP輸入中文亂碼問題

來源:互聯網
上載者:User

 

  1. <%response.setContentType("text/vnd.wap.wml;charset=UTF-8";%>//utf8
  2. <%request.setCharacterEncoding("UTF-8";%>//參數處理方式utf8
  3. <%@ page pageEncoding="ISO-8859-1"%>//頁面字元處理方式 iso-8859-1

我的JSP例子說明:

輸入頁面test1.jsp :

  1. <%@ page contentType="text/vnd.wap.wml;charset=gb2312" %>
  2. <%@ page pageEncoding="ISO-8859-1"%>
  3. <?xml version="1.0" ?>
  4. <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
  5. <wml>
  6. <card id="test1" title="漢字輸入">
  7. <p>
  8. 姓名<input name="name" size="10"/><br/>
  9. 號碼<input name="id" format="*N" size="12"/><br/>
10.
11. <anchor>確定
12.   <go href="test2.jsp" method="post">
13.     <postfield name="name" value="name"/>
14. <postfield name="id" value="id"/>
15.
16. </go>
17. </anchor>
18. </card>
19. </wml>

//以上使用 go method=”post”> 的方法傳送參數,用get好像不行

接收頁面test2.jsp :

  1. <%@ page contentType="text/vnd.wap.wml;charset=utf-8" %>
  2. <?xml version="1.0" ?>
  3. <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
  4. <wml>
  5. <card id="test2" title="漢字接收">
  6. <%
  7. request.setCharacterEncoding("utf-8";
  8. String name=request.getParameter("name";
  9. String id=request.getParameter("id";
10. %>
11. <p>姓名:<%=name%></p>
12. <p>id:<%=id%></p>
13.
14. <do type="prev" label="返回上頁">
15. <prev/>
16. </do>
17.
18. </card>
19. </wml>

把2個檔案儲存成為utf-8檔案格式就可以了。
我的感覺主要是
request.setCharacterEncoding(”utf-8″;
起到很大作用, 如果輸入頁面是gb2312 格式
接受頁面則要使用
request.setCharacterEncoding(”gb2312″;
建議還是使用utf-8,因為移動網關用utf-8

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.