Java tutorial
import java.net.URL; import java.net.URLConnection; public class Main { public static void main(String args[]) throws Exception { URL url = new URL("http://www.google.com"); URLConnection httpCon = (URLConnection) url.openConnection(); int s = httpCon.getHeaderFieldInt("intKey", 1); } }