Web项目中出现乱码

(不知道怎么写才好)

分两种情况:

1、如果是 get 方式

单独修改: new String(str.getBytes("原来的编码"), "想要的编码")

全局修改:在项目中,server.xml 中找到 <Connector>标签,在里面添加 URIEncoding="编码"  注意大小写

2、如果是 post 方式

request.setCharacterEncoding("编码");

posted @ 2019-04-11 20:25  DDiamondd  阅读(244)  评论(0编辑  收藏  举报
TOP