欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

request获取url的参数编码问题

程序员文章站 2024-02-01 21:25:41
...

1、设为utf-8编码

request.getParameter("Params")).getBytes("iso-8859-1"), "utf-8" )

2、防止参数为null的情况,

str == null ? "" : str;

3、编解码问题

https://blog.csdn.net/farxix/article/details/78055469