博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java中的乱码问题研究(二)
阅读量:6214 次
发布时间:2019-06-21

本文共 2252 字,大约阅读时间需要 7 分钟。

  hot3.png

一、前言

上面写了console的乱码问题,接下来写的是web中servlet中的问题,大楷我比较关心一点,因为遇到这个的情况多一些吧。直接开始吧。

二、jsp和servlet中的乱码问题

其实在java文件的编译的情况和(一)中的情况是一样的,不过这里是由WEB容器去调用JVM而已,那么我们得知道一些默认的东西

比如特别重要的:(摘要)

如果Servlet 在运行的过程中,需要接受从客户端传来的字符如:表单输入的值和URL中传入的值,此时如果程序中没有设定接受参数时采用的编码格式,则WEB 容器会默认采用ISO-8859-1 编码格式来接受传入的值并在JVM 中转化为UNICODE 格式的保存在WEB 容器的内存中。Servlet 运行后生成输出,输出的字符串是UNICODE 格式的,紧接着,容器将Servlet 运行产生的UNICODE 格式的串(如html语法,用户输出的串等)直接发送到客户端浏览器上并输出给用户,如果此时指定了发送时输出的编码格式,则按指定的编码格式输出到浏览器上,如果没有指定,则默认按ISO-8859-1 编码发送到客户的浏览器上。

注意是ISO-8859-1就行了,tomcat 5.0之前采用是由用户设置的编码方式解析,tomcat 5.0过后有个参数(useBodyEncodingForURI)被默认了false,就使用了ISO-8859-1解析了,这儿是配置中的关键。

<!--more-->

public class Hello extends HttpServlet {    private static final long serialVersionUID = 4878915372815719687L;        public Hello() {        super();    }    public void destroy() {        super.destroy(); // Just puts "destroy" string in log    }    public void doGet(HttpServletRequest request, HttpServletResponse response)        throws ServletException, IOException {        //输入:设置请求编码格式        request.setCharacterEncoding("GBK");        //输出:设置响应编码格式        response.setContentType("text/html; charset=GBK");        PrintWriter out = response.getWriter();        out.write("

"); out.write("Hello, 中文!"); out.write("

"); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //输入:设置请求编码格式 request.setCharacterEncoding("GBK"); //输出:设置响应编码格式 response.setContentType("text/html; charset=GBK"); //从请求中接收参数 String input_str = request.getParameter("input_str"); String url_arg = request.getParameter("url_arg"); //出错处理 input_str = (null == input_str) ? "" : input_str; url_arg = (null == url_arg) ? "" : url_arg; PrintWriter out = response.getWriter(); out.write("

"); out.println("您输入的字符串是:" + input_str); out.write("

"); //out.println("您的表单传递的URL参数是:" + new String(url_arg.getBytes("ISO-8859-1"), "GBK")); out.println("您的表单传递的URL参数是:" + url_arg); out.write("

"); } public void init() throws ServletException { // Put your code here }}

转载于:https://my.oschina.net/lulin/blog/750085

你可能感兴趣的文章
HyperLedger Fabric 1.2 Solo模式简介(10.1)
查看>>
centos linux系统下搭建git服务器
查看>>
Spring Cloud Hystrix(断路器)
查看>>
ERROR: Error installing json:The 'json' native gem requires installed build tools.
查看>>
关于js模块化prototype
查看>>
skynet中的gate,watchdog,agent之间的关系
查看>>
【他们说】GitCafe 前端工程师们的工作日常
查看>>
SSM-MyBatis-10:Mybatis中SqlSession的getMapper()和简单的工具类MyBatisUtils
查看>>
[20180423]关于rman备份的问题2.txt
查看>>
Ngers天气——开发进程1
查看>>
360 开源企业级 Kubernetes 多集群管理平台 Wayne
查看>>
3000通电话培养出一个性格分析专家,阿里“柔军”是这样养成的
查看>>
MySql创建索引的技巧
查看>>
Edit Control控件操作问题
查看>>
转载:APP的上线和推广&mdash;&mdash;线上推广渠道
查看>>
开启脑洞模式,一个关于安保无人机的未来构想
查看>>
linux常用命令
查看>>
SpringCloud学习之sleuth&zipkin【二】
查看>>
为了保障乘客权益,英国专门发布了新的自动驾驶新的保险法规
查看>>
服务(2)====一个lamp的脚本以及基于lamp安装wordpress
查看>>