JSP 传递中文参数的例子

2016-02-19 09:40 5 1 收藏

在这个颜值当道,屌丝闪边的时代,拼不过颜值拼内涵,只有知识丰富才能提升一个人的内在气质和修养,所谓人丑就要多学习,今天图老师给大家分享JSP 传递中文参数的例子,希望可以对大家能有小小的帮助。

【 tulaoshi.com - Web开发 】

代码如下:

?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

来源:http://www.tulaoshi.com/n/20160219/1591657.html

延伸阅读
标签: Web开发
     dwr 简介    “ dwr (Direct Web Remoting)是一个WEB远程调用框架.利用这个框架可以让AJAX开发变得很简单.利用 dwr 可以在客户端利用 java Script直接调用服务 端的 java 方法并返回值给 java Script就好像直接本地客户端调用一样( dwr 根据 java 类来动态生成 java Scrip代码).它的最新版本 dwr 0.6添...
标签: Web开发
前台 代码如下: !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" html xmlns="http://www.w3.org/1999/xhtml" head title无标题页/title script type="text/javascript" src="jquery/jquery-1.2.6.js"/script script type="text/javascript" //这个方...
标签: Web开发
function getparastr(strname)   {    var hrefstr,pos,parastr,para,tempstr;    hrefstr = window.location.href;    pos = hrefstr.indexOf("?")    parastr = hrefstr.substring(pos+1);    para = parastr.split("&");    tempstr="";    for(i=0;ipara....
标签: Java JAVA基础
  package coreservlets; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.util.*; /** Creates a table showing the current value of each * of the standard CGI variables. * <P * Taken from Core Servlets and JavaServer Pages * from Prentice Hall and Sun Microsystems Press, * htt...
import java.awt.*; import java.applet.*; /**  * pTitle: 带阴影的文字/p  * pDescription: 使用Applet和Graphics,实现一个文字的移动广告。/p  * pCopyright: Copyright (c) 2003/p  * pFilename: ShadowText.java/p  * @version 1.0  */ public class ShadowText extends Applet implements Runnable ...

经验教程

779

收藏

26
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部