手机
当前位置:查字典教程网 >编程开发 >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和Servlet对中文的处理

JSP中实现301重定向的代码

JSP中获取ExtJS.Ajax前台传递的JSON数据实现过程

JSP自定义标签的实现过程

Jsp传递中文参数详解

Jsp页面URL中传递参数乱码的方法

JSP中bean的使用

使用JSP + JAVABEAN + XML 开发的一个例子

struts2中一个表单中提交多个请求的例子

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

精品推荐
分类导航