servlet参数编码配置
Posted 狂妄的老头
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了servlet参数编码配置相关的知识,希望对你有一定的参考价值。
1 //读取web.xml中的编码配置 2 ServletContext context = this.getServletContext(); 3 String encode = context.getInitParameter("encode"); 4 5 //请求参数编码设置 6 request.setCharacterEncoding(encode); 7 //响应输出编码配置 8 response.setContentType("text/html;charset=utf-8");
以上是关于servlet参数编码配置的主要内容,如果未能解决你的问题,请参考以下文章