home *** CD-ROM | disk | FTP | other *** search
- package sun.net.www.protocol.ftp;
-
- import java.net.URL;
- import java.net.URLConnection;
- import java.net.URLStreamHandler;
- import sun.net.ftp.FtpClient;
- import sun.net.www.protocol.http.HttpURLConnection;
-
- public class Handler extends URLStreamHandler {
- protected URLConnection openConnection(URL var1) {
- return (URLConnection)(FtpClient.useFtpProxy && FtpClient.ftpProxyHost != null && FtpClient.ftpProxyHost.length() > 0 ? new HttpURLConnection(var1, FtpClient.ftpProxyHost, FtpClient.ftpProxyPort) : new FtpURLConnection(var1));
- }
- }
-