PHP小丑 发表于 2021-10-23 18:19:12

jsp页面间传中文参数示例(页面传参数编码)

转码:

a.href="./showCont.jsp?tcontent="+encodeURI(encodeURI(tcontent));

解码:

java.net.URLDecoder.decode((String)request.getParameter("tcontent"), "UTF-8");


a.jsp源代码

<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%
       String str_test = "华工";
%>
<form method=post action="b.jsp?test=<%=java.net.URLEncoder.encode(str_test) %>">
         <input type="submit" value="Submit" name="提交">
</form>
</body>
</html>
b.jsp源代码

<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%
       String str = new String(request.getParameter("test").getBytes("ISO8859_1"));
%>
<BR>
<%=str %>
</body>

https://www.uoften.com/program/jsp/20180413/47749.html
页: [1]
查看完整版本: jsp页面间传中文参数示例(页面传参数编码)