cookie教程问题

发布于 2024-10-16 20:10:46 字数 330 浏览 6 评论 0原文

http://www.hccp.org/java-net-cookie-how -to.html

根据此链接,我试图创建 cookie 并发送 cookie 以进入 cookie 站点。但它不起作用。这里面有没有什么问题呢。我对 URLConnection 的方法 setRequestProperty 有一些困惑。我不明白他们试图通过传递“Cookie”来发送什么?它只是一个字符串、名称或值吗?

http://www.hccp.org/java-net-cookie-how-to.html

According to this link I was trying to create cookie and send cookie to enter in a cookie site. But it is not working. Is there is any problem in that. I have some confusion on the method setRequestProperty of URLConnection. I don't understand what are they trying to send by passing "Cookie"? Is it only a string or name or value??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠意 2024-10-23 20:10:46
urlConn.setRequestProperty("Cookie", myCookie);

在本例中,"Cookie" 是一种告诉 setRequestProperty 方法参数(实际上只是一个 String)应该被视为一块饼干。

setRequestProperty 对于多种属性可能更有用,但是 addRequestProperty 会更多对于 cookie 很有用,因为每个请求可以有多个 cookie。这些属性在 RFC 2068 中指定 - 特别阅读第 14 节。

urlConn.setRequestProperty("Cookie", myCookie);

"Cookie" in this case is a way to tell the setRequestProperty method that the argument (which is really just a String) should be treated as a cookie.

setRequestProperty may be more useful for many kinds of properties, but addRequestProperty would be more useful for cookies, because you can have multiple cookies per request. The properties are specified in RFC 2068 -- read especially section 14.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文