手机
当前位置:查字典教程网 >编程开发 >JSP教程 >JSP 传递中文参数的例子
JSP 传递中文参数的例子
摘要:复制代码代码如下:xxxxxxxxxxxxxxxxx望京

复制代码 代码如下:

<?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页面传值中文乱码的简单解决方法

EJB 3.0开发指南之多表映射

jsp中URL传递中文参数的处理方法

jsp中页面间传汉字参数转码的方法

jsp重定向地址栏不改变的实例

JSP自定义标签的实现过程

java页面中文乱码

JSP中bean的使用

JAVA/JSP学习系列之五(JDBC-ODBC翻页例子)

jsp页面间传中文参数示例

精品推荐
分类导航