JSP 传递中文参数的例子_JSP教程-查字典教程网
JSP 传递中文参数的例子
JSP 传递中文参数的例子
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下: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教程学习
    编程开发子分类