URL参数中汉字转换为16进制Unicode形式
导入JAR包:
importjava.net.*;
把汉字转换为16进制Unicode形式:
Stringxw="新闻中心";
Stringname=URLEncoder.encode(xw,"utf-8");
把16进制Unicode形式字符串转换为汉字:
URLDecoder.decode("%E6%96%B0%E9%97%BB%E4%B8%AD%E5%BF%83","utf-8");
注意:从A(UTF-8)页面中跳到B页面时:参数name带有16进制参数值时,在B页面中使用,request.getParameter()获取的参数是乱码。还不能使用URLDecoder.decode(name,"utf-8");获取"新闻中心";
补充:
在A页面中:
<%
Stringxw="新闻中心";
Stringname=URLEncoder.encode(xw,"utf-8");
request.setParameter("name","name");%>
在B页面中:
<%
Stringxw=URLDecoder.decode(newString(request.getParameter("name").getBytes("iso-8859-1"),"utf-8"),"utf-8");%>这样就不会出现乱码了。
相关推荐
86530296 2020-11-10
周游列国之仕子 2020-09-21
88540591 2020-06-16
89411051 2020-06-14
mjshldcsd 2020-06-14
88384957 2020-06-12
84590091 2020-06-08
88540591 2020-06-04
88540591 2020-06-01
81214051 2020-06-01
84590091 2020-05-03
81214051 2020-04-25
honghao0 2020-04-24
84590091 2020-04-22
85271041 2020-04-10
88384957 2020-03-27
85271041 2020-03-08