JSP 传递中文参数的例子

JSP传递中文参数的例子

复制代码 代码如下:



<%@ 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");
}
%>




xxxxxxxxxxxxxxxxx<%=new String(location.getBytes("iso-8859-1"),"utf-8")%>


"> 望京


以上就是JSP 传递中文参数的例子的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Java