亲宝软件园·资讯

展开

JSP 中文参数 JSP 传递中文参数的例子

人气:0
想了解JSP 传递中文参数的例子的相关内容吗,在本文为您仔细讲解JSP 中文参数的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:JSP,中文参数,下面大家一起来学习吧。
复制代码 代码如下:

<?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>

加载全部内容

相关教程
猜你喜欢
用户评论