protected java.net.URLConnection | openConnection(java.net.URL u, java.net.Proxy proxy)Returns a connection, which is established via the proxy ,
to the FTP server specified by this URL . If
proxy is DIRECT type, the connection is made in normal
way.
if (null == u || null == proxy) {
throw new IllegalArgumentException(Msg.getString("K034b")); //$NON-NLS-1$
}
return new FtpURLConnection(u, proxy);
|