如何发送请求标头?

时间:2013-10-22 02:45:39

标签: java java-ee web http-headers

如何发送请求标头?假设我在向网站发出HTTP请求时发送自己的请求标头。

我该怎么做?

URL url = new URL(urlString);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();

// HOW DO I SEND REQUEST HEADER LIKE Date,Cookie,Cache-Control ???

2 个答案:

答案 0 :(得分:2)

获取HttpURLConnection连接后,您可以按照以下方式执行此操作

//adding headers
con.setRequestProperty("headername", value);

答案 1 :(得分:2)

connection.setRequestProperty("HeaderName", "Value");