无法使用 Java 的 URLConnection 获取响应标头位置
有人可以建议我在这里做错了什么吗?
我正在尝试使用 Java 获取某个 URL 的标头位置 这是我的代码:
URLConnection conn = url.openConnection();
String location = conn.getHeaderField("Location");
这很奇怪,因为我确信我所指的 URL 返回 Location 标头,并且使用 getContentType() 或 getContentLength() 等方法可以完美地工作
can someone kindly suggest what I'm doing wrong here?
I'm trying to get the header location for a certain URL using Java
here is my code:
URLConnection conn = url.openConnection();
String location = conn.getHeaderField("Location");
it's strange since I know for sure the URL i'm refering to return a Location header and using methods like getContentType() or getContentLength() works perfectly
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许
Location
标头作为重定向响应的一部分返回。如果是这样,URLConnection
通过向指向的资源发出第二个请求来自动处理重定向,因此您需要禁用它:编辑:
如果您确实需要重定向目标的 URL 并且不想禁用重定向处理,则可以调用
getURL()
(在建立连接后)。Perhaps
Location
header is returned as a part of redirect response. If so,URLConnection
handles redirect automatically by issuing the second request to the pointed resource, so you need to disable it:EDIT:
If you actually need a URL of the redirect target and don't want to disable redirect handling, you may call
getURL()
instead (after connection is established).只是对 axtavt 答案进行跟进...如果网址有多个重定向,您可以执行类似的操作,以便获取直接链接:
Just a follow up to axtavt's answer... If the url has multiple redirects, you could do something like this in order to obtain the direct link: