如何用Java获取cookies?
如何使用 Java 从网页获取 cookie?我的意思是只有Java而不是Servlet等。
How can I get a cookie from a web page using Java? I mean only Java not with Servlets or etc..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
java.net.URLConnection
为此。它提供了
getHeaderFields ()
方法来获取响应头。 Cookie 由Set-Cookie
标头设置。You can use
java.net.URLConnection
for this. It offers agetHeaderFields()
method to get the response headers. The cookies are set bySet-Cookie
header.您可以 从标头获取 cookie ,
或者您可以使用 Apache commons 和 使用它们的功能。
You can either get the cookies from the header,
or you can use Apache commons and use their functionality.