Class net.ftp.IftpClient
All Packages    This Package    Previous    Next

Class net.ftp.IftpClient

java.lang.Object
   |
   +----net.NetworkClient
           |
           +----net.TransferProtocolClient
                   |
                   +----net.ftp.FtpClient
                           |
                           +----net.ftp.IftpClient

public class IftpClient
extends FtpClient
Create an FTP client that uses a proxy server to cross a network firewall boundary.
Version:
1.8, 10 Feb 1995
Author:
Jonathan Payne
See Also:
FtpClient

IftpClient(String)
Create a new IftpClient handle.
IftpClient()
Create an uninitialized client handle

login(String, String)
login user to a host with username user and password password
openServer(String)
Open an FTP connection to host host.
setProxyServer(String)
change the proxyserver from the default.

IftpClient
  public IftpClient(String host)
Create a new IftpClient handle.

IftpClient

  public IftpClient()
Create an uninitialized client handle

openServer
  public void openServer(String host)
Open an FTP connection to host host.
Overrides:
openServer in class FtpClient

login

  public void login(String user,
                    String password)
login user to a host with username user and password password
Overrides:
login in class FtpClient

setProxyServer

  public void setProxyServer(String proxy)
change the proxyserver from the default.


All Packages    This Package    Previous    Next