1 17 package org.columba.core.url.http; 18 19 import java.io.IOException ; 20 import java.net.URL ; 21 import java.net.URLConnection ; 22 23 27 public class Handler extends sun.net.www.protocol.http.Handler { 28 public Handler() { 29 super(); 30 } 31 32 public URLConnection openConnection(URL u) throws IOException { 33 return new HttpURLConnection(u, 34 (java.net.HttpURLConnection )super.openConnection(u)); 35 } 36 } 37 | Popular Tags |