首页 > 其他 > 详细

Servlet编码

时间:2015-01-28 23:48:53      阅读:329      评论:0      收藏:0      [点我收藏+]

一,Servlet编码(常用的get和post)

  0,url的组成: scheme://ip:port/contextPath/servletPath/pathInfo?queryString

  例如,在 http://192.168.1.101:8080/ReceiveAndroid/ServletForPostMethod/pathInfo?name=莉莉&pwd=abc 中,

contextPath:/ReceiveAndroid
servletPath:/ServletForPostMethod
getScheme:http
uri:/ReceiveAndroid/ServletForPostMethod
url:http://192.168.1.101:8080/ReceiveAndroid/ServletForPostMethod/pathInfo?name=莉莉&pwd=abc
protocol:HTTP/1.1

  1,使用 HttpServletRequest.getRequestURI()方法 //内容为 contextPath/servletPath/pathinfo, 是浏览器提交过来的原始数据,没有被Servlet服务器decode过.

  2,使用 HttpServletRequest.setCharacterEncoding()方法仅适用于post提交的request body部分,而不适用于get提交的query string编码.

  3,html头部ContentType("text/html; charset=utf-8") [不是meta‘中的ContentType] 是针对java二进制码输出的结果,即我们在客户端看到的(使用的编码)

Servlet编码

原文:http://www.cnblogs.com/listened/p/4257400.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!