复制代码 代码如下:
?xml version="1.0" encoding="UTF-8" ?>
!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
%@ page import="java.net.*"%>
%
String location = "";
String locationFromRequest = request.getParameter("location");
if (null != locationFromRequest
(!locationFromRequest.equals(""))) {
location = java.net.URLDecoder.decode(locationFromRequest,
"UTF-8");
}
%>
html>
head>
meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
/head>
xxxxxxxxxxxxxxxxx%=new String(location.getBytes("iso-8859-1"),"utf-8")%>
br/>
a href="1234.jsp?location=%=java.net.URLEncoder.encode("望京", "UTF-8")%>"> 望京/a>
/html>
您可能感兴趣的文章:- JSP向后台传递参数的四种方式总结
- JSP页面中超链接传递中文参数出现乱码问题解决方法
- jsp中URL传递中文参数的处理方法
- JSP中js传递和解析URL参数以及中文转码和解码问题
- jsp中利用jquery+ajax在前后台之间传递json格式参数
- JSP跨iframe如何传递参数实现代码
- JSP页面中文参数的传递(get和post方法分析)
- JSP页面中文传递参数使用escape编码
- javascript通过url向jsp页面传递中文参数导致乱码解决方案
- jsp中四种传递参数的方法