Response的setContentType(encoding)、setCharacterEncoding(encoding)的区别,乱码的其他解决方案,MIMA(与Http请求)

 

response.setContentType(encoding);与response.setCharacterEncoding(encoding);有什么不同呀,为什么response对象里有两个处理编码的方法???

Response的setContentType(encoding)、setCharacterEncoding(encoding)的区别,乱码的其他解决方案,MIMA(与Http请求)_第1张图片

request对象也就只有“两个set开头的方法”,要用于解决乱码也就只有这个“request.setCharacterEncoding(encoding);”方法!!!

Response的setContentType(encoding)、setCharacterEncoding(encoding)的区别,乱码的其他解决方案,MIMA(与Http请求)_第2张图片

------------------------------------------参考----------------------------------------------------- 

JavaWeb学习篇之----容器Response详解(有关response setCharacterEncoding和setContentType)详细对比说明

Response的setContentType(encoding)、setCharacterEncoding(encoding)的区别,乱码的其他解决方案,MIMA(与Http请求)_第3张图片

 response.setContentType与 request.setCharacterEncoding 区别

Response的setContentType(encoding)、setCharacterEncoding(encoding)的区别,乱码的其他解决方案,MIMA(与Http请求)_第4张图片

setContentType与setCharacterEncoding的区别

 response设置编码的三种方式

Response的setContentType(encoding)、setCharacterEncoding(encoding)的区别,乱码的其他解决方案,MIMA(与Http请求)_第5张图片

 request、response 中文乱码问题与解决方式

Response的setContentType(encoding)、setCharacterEncoding(encoding)的区别,乱码的其他解决方案,MIMA(与Http请求)_第6张图片

-----------------------------------------END---------------------------------------------------- 

总结:

1.response对象的(两个方法都是给post方式提交至后台的数据设置编码格式)

setCharacterEncoding方法:设置服务器端编码格式;优先级比setContentType方法高,在其后写上,会覆盖其编码格式设置;只设置字符的编码方式

setContentType方法:通知浏览器“服务器发送”的数据格式;响应类型为HTML格式的;除了设置字符的编码方式,还能设置文本内容的类型【默认自带】;有人说:setContentType方法中会调用了setCharacterEncoding方法设置Response容器的编码

2.

因人而异地使用使用response里的这两种编码方法吧【JSP中response.setContentType和response.setCharacterEncoding区别分析】,不过本人一般使用response.setContentType("text/html;charset=UTF-8");【还会使用request对象的setCharacterEncoding("UTF-8")】

 学习:

由response.setContentType()方法开始谈JSP/Servelt上传下载文件【讲解文件上传下载为主】

JavaWeb: response.setContentType()方法总结

setContentType() 方法【超简述的】

response.setContentType()的作用及参数

扩展:

常见的MIME类型【MIMA(多用途互联网邮件扩展类型)】

HTTP请求和MIME介绍【HTTP请求:请求行,消息报头,请求正文

MIME 类型 - HTTP | MDN

MIME 参考手册-W3School

mime - npm网站

你可能感兴趣的:(Java,基础)