jsp傳值中文亂碼問題解決方案樣本介紹

來源:互聯網
上載者:User

在jsp中,我們經常從資料庫讀取資料返回用戶端,但我們常常在製作時出現亂碼現象,所以我們可以用<%request.setCharacterEncoding("UTF-8");%>這個方法來保證中文的正確輸出,下面舉個例子吧,
我 們要接住表單的值或者把資料庫資料列印出來的之前,先把<%request.setCharacterEncoding("UTF- 8");%>放在他們的前面,然後,表單的提交方式必須是post,即method="post",這樣可以閉避免亂碼了,請看下面:

複製代碼 代碼如下:
<%request.setCharacterEncoding("UTF-8");%>
<form action="" method="post">
姓名:<input type="text" name="name"/>
<br/>
性別:<input type="text" name="sex" />
<%
String name=requset.getParameter("name");
String sex=request.getParameter("sex");out.print(name);
out.print(sex);
%>
</form>


或者有時使用者登陸時,我們需要在某一頁用到使用者名稱或者密碼,我們可以用下面這種方法來記住,在其他頁面可以隨便調用,如:

複製代碼 代碼如下:
<form action="" method="post">
使用者名稱:<input type="text" name="name"/>
<br/>
密碼:<input type="password" name="password" />
<form/>
String name=requset.getParameter("name");
String password=request.getParameter("password");
application.setAttribute("names",name);
application.setAttribute("passwords",password);密碼和使用者名稱就這樣被記住了,在其他也可以隨便調用,如下
application.getAttribute(“names");
application.getAttribute("passwords");
<%
out.print(application.getAttribute(“names"));
out.print(application.getAttribute(“passwords")
%>


這樣就會輸出文字框的值

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.