hi
setRequestProperty(
String key, String value) is the basic definition of this method.
But in my program i am not clear with the key and value assigned to it. The program is,
URL url = new URL("http://www.google.com/");
URLConnection con = url.openConnection();
con.setRequestProperty("Proxy-Authorization","Basic " + new sun.misc.BASE64Encoder().encode( (proxyUser + ":" + proxyPassword).getBytes()));
Please some one help me to understand the above line.
thanks in advance.