Java:获取页眉然后关闭连接

时间:2012-03-12 23:01:53

标签: java urlconnection

我只想在不下载页面内容的情况下获取网址的页眉。这就是我现在正在使用的:

...
URL targetUrl = new URL( urlValue );
HttpURLConnection conn = (HttpURLConnection) targetUrl.openConnection();
String value = conn.getHeaderField(0);
...

我不确定这是否会获得标题然后退出或者它正在做什么。

1 个答案:

答案 0 :(得分:7)

发送HEAD请求而不是GET请求(这是默认方法)。

conn.setRequestMethod("HEAD");
// ...

否则返回完整的回复正文。