随笔分类 - HTTP
http网络协议
摘要:Jakarta的httpclient3.1是最新版本,项目中需要用程序模拟浏览器的GET和POST动作。在使用过程中遇到不少问题。1. 带附件的POST提交 最开始都是使用MultipartPostMethod这个类,现在已经废弃这个类了。API说明:Deprecated.Use Multipart...
阅读全文
摘要:1.session.setAttribute()和session.getAttribute()配对使用,作用域是整个会话期间,在所有的页面都使用这些数据的时候使用。2.request.setAttribute()和request.getAttribute()配对使用,作用域是请求和被请求页面之间。 ...
阅读全文
摘要:一、类结构org.jsoup.nodesClass Documentjava.lang.Object org.jsoup.nodes.Node org.jsoup.nodes.Element org.jsoup.nodes.DocumentAll Implemented Interfaces:Clo...
阅读全文
摘要:HTTP Header中Accept-Encoding 是浏览器发给服务器,声明浏览器支持的编码类型[1]常见的有Accept-Encoding: compress, gzip //支持compress 和gzip类型Accept-Encoding: //默认是identityAccept-Enco...
阅读全文