jsp url地址中文傳輸問題解決方案

來源:互聯網
上載者:User


getparameter得到的都是string類型的。或者是http://a.jsp教程?id=123中的123,或者是某個表單提交過去的資料。
getparameter:用於用戶端重新導向時,即點擊了連結或提交按扭時傳值用,即用於在用表單或url重新導向傳值時接收資料用。
getparameter只是應用伺服器在分析你送上來的request頁面的文本時,取得你設在表單或url重新導向時的值
-->

<%@ page contenttype="text/html; charset=gb2312" language="java" import="java.sql.*" errorpage="" %>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<connector port="8080" protocol="http/1.1" uriencoding="utf-8"
               connectiontimeout="20000"
               redirectport="8443" />
<!--
特別引起我注意的是 uriencoding="utf-8" ,如果不設定,url上傳遞的中文就不能被正確解碼
-->  

</head>
<body>
<%
string s = request.getparameter("s");
    string str = request.getparameter("nau");
    out.println(str+"<br/>");
    pattern p = pattern.compile("softname=(.*)[&$]");
    matcher m = p.matcher(str);
    string softname = "";
    while(m.find()){
       softname =  m.group(1);
       out.println("softname=" + softname);       
    } 
    out.println(str.replace(softname,urlencoder.encode(softname,"utf-8")));

%>
</body>
</html>

相關文章

聯繫我們

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