在java类中传递中文的编码和解码
Posted 春夏秋冬---studio
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在java类中传递中文的编码和解码相关的知识,希望对你有一定的参考价值。
平常我在jsp中传递参数,那么在另外一个jsp中通过request.getParameter()得到参数值,中文和英文都能得到,但是在java中通过
Stirng LTloss=“中中中中-国国国国”;
requestURL=“/reserve/loss/IBNR/project/ibnrmode/prepaidrate.jsp?<loss="+LTloss”
HttpRespons response=request.sendPost(requestURL);
jsp:String str = request.getParameter(“LTloss”);是乱码,
所以进行转码和解码。
//java类传递url传递中文参数的编码和解码方法
public static String encode(String str,String charset) throws UnsupportedEncodingException
str = java.net.URLEncoder.encode(str, charset);
return str.replaceAll("%", "_");//在测试中可以直接将转码后的内容放入url里,但是在jsp中得到的字符仍然是乱码,只能将转码后的字符中的%替换成“_”,也可以是其他只要能在转码解码成功就行,曾用“+”但结果仍是无效。
public static String decode(String str,String charset) throws UnsupportedEncodingException
str=str.replaceAll("\\\\_", "%");
return java.net.URLDecoder.decode(str, charset);
在java中先转码调用encode():LTloss=this.encode(LTloss, "GBK");
在jsp中在解码掉用decode():String strLTloss = IBNRTemplete.decode(request.getParameter("LTloss"), "GBK");
以上是关于在java类中传递中文的编码和解码的主要内容,如果未能解决你的问题,请参考以下文章
Circe - 解码/编码 json 时在案例类中使用默认字段