源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

JSP 传递中文参数的例子

  • 时间:2022-09-22 05:23 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:JSP 传递中文参数的例子
[u]复制代码[/u] 代码如下:
<?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>
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部