Home > Java > javaTutorial > body text

Java example - Get URL response header information

黄舟
Release: 2017-01-21 10:51:25
Original
1544 people have browsed it

The following example demonstrates how to obtain the response header information of the specified URL:

/*
 author by w3cschool.cc
 Main.java
 */import java.io.IOException;import java.net.URL;import java.net.URLConnection;import java.util.Map;import java.util.Set;public class Main {
    public static void main(String[] args) throws IOException{
        URL url = new URL("http://www.w3cschool.cc");
        URLConnection conn = url.openConnection();
        
        Map headers = conn.getHeaderFields();
        Set<String> keys = headers.keySet();
        for( String key : keys ){
            String val = conn.getHeaderField(key);
            System.out.println(key+"    "+val);
        }
        System.out.println( conn.getLastModified() );
    }}
Copy after login

The output result of running the above code is:

Transfer-Encoding    chunked
null    HTTP/1.1 200 OK
Server    Tengine/1.3.0
Connection    keep-alive
Vary    Cookie
Date    Mon, 04 May 2015 03:54:05 GMT
X-Pingback     
X-Powered-By    PHP/5.3.15
Content-Type    text/html; charset=UTF-8
Copy after login

The above is the Java example - Obtaining the URL response header information For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!