HttpURLConnection: getContentType() : HttpURLConnection « java.net « Java by API
- Java by API
- java.net
- HttpURLConnection
HttpURLConnection: getContentType()
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Date;
public class Main{
public static void main(String args[]) throws Exception {
URL url = new URL("http://www.google.com");
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
System.out.println("Content-Type: " + httpCon.getContentType());
}
}
Related examples in the same category