public class FileTransferClient extends java.lang.Object implements FileTransferClientInterface
Constructor and Description |
---|
FileTransferClient()
Default constructor
|
Modifier and Type | Method and Description |
---|---|
void |
cancelAllTransfers()
Cancel current transfer if underway
|
void |
changeDirectory(java.lang.String directoryName)
Change directory on the FTP server.
|
void |
changeToParentDirectory()
Change to parent directory on the FTP server.
|
void |
connect()
Make a connection to the FTP server.
|
void |
createDirectory(java.lang.String directoryName)
Create directory on the FTP server.
|
void |
deleteDirectory(java.lang.String directoryName)
Create directory on the FTP server.
|
void |
deleteFile(java.lang.String remoteFileName)
Deletes a remote file.
|
FTPFile[] |
directoryList()
List the current directory on the FTP server.
|
FTPFile[] |
directoryList(java.lang.String directoryName)
List a directory on the FTP server.
|
java.lang.String[] |
directoryNameList()
List the names of files and directories in the current directory on the FTP server.
|
java.lang.String[] |
directoryNameList(java.lang.String directoryName,
boolean isLongListing)
List the names of files and directories of a directory on the FTP server.
|
void |
disconnect()
Disconnect from the FTP server.
|
void |
disconnect(boolean immediate)
Disconnect from the FTP server.
|
byte[] |
downloadByteArray(java.lang.String remoteFileName)
Download a file from the FTP server into a byte array.
|
void |
downloadFile(java.lang.String localFileName,
java.lang.String remoteFileName)
Download a file from the FTP server .
|
void |
downloadFile(java.lang.String localFileName,
java.lang.String remoteFileName,
WriteMode writeMode)
Download a file from the FTP server .
|
FileTransferInputStream |
downloadStream(java.lang.String remoteFileName)
Download a file from the FTP server as a stream.
|
java.lang.String |
executeCommand(java.lang.String command)
Request that the remote server execute the literal command supplied.
|
boolean |
exists(java.lang.String remoteFileName)
Determine if a remote file exists.
|
AdvancedFTPSettings |
getAdvancedFTPSettings()
Get the advanced FTP configuration parameters object
|
AdvancedGeneralSettings |
getAdvancedSettings()
Get the advanced general configuration parameters object, for none
protocol specific parameters
|
FTPTransferType |
getContentType()
Get the current content type for all connections.
|
java.util.Date |
getModifiedTime(java.lang.String remoteFileName)
Get the modified-time of a remote file.
|
java.lang.String |
getPassword()
Get the current user password.
|
java.lang.String |
getRemoteDirectory()
Get the current remote directory.
|
java.lang.String |
getRemoteHost()
Returns the IP address or name of the remote host.
|
int |
getRemotePort()
Returns the port being connected to on the remote server.
|
long |
getSize(java.lang.String remoteFileName)
Get the size of a remote file.
|
FileStatistics |
getStatistics()
Get statistics on file transfers and deletions.
|
java.lang.String |
getSystemType()
Get a string that represents the remote system that the client is logged
into.
|
int |
getTimeout()
Returns the timeout for socket connections.
|
java.lang.String |
getUserName()
Get the current user name.
|
boolean |
isConnected()
Is this client currently connected to the server?
|
boolean |
isDetectContentType()
Get the detect content type flag
|
void |
manualLogin()
Perform a manual login using the credentials that have been set.
|
void |
rename(java.lang.String renameFromName,
java.lang.String renameToName)
Rename a remote file or directory.
|
void |
setContentType(FTPTransferType type)
Set the transfer type for all connections, either ASCII or binary.
|
void |
setDetectContentType(boolean detectContentType)
Set auto detect of filetypes on or off.
|
void |
setEventListener(EventListener listener)
Set the event listener for transfer event notification
|
void |
setModifiedTime(java.lang.String remoteFileName,
java.util.Date modifiedTime)
Set the modified-time of a remote file.
|
void |
setPassword(java.lang.String password)
Set the password of the user to log in with.
|
void |
setRemoteHost(java.lang.String remoteHost)
Set the IP address or name of the remote host
This may only be done if the client is not already connected to the server.
|
void |
setRemotePort(int remotePort)
Set the port to connect to on the remote server.
|
void |
setTimeout(int timeout)
Set the timeout for socket connections.
|
void |
setUserName(java.lang.String userName)
Set the name of the user to log in with.
|
java.lang.String |
uploadFile(java.lang.String localFileName,
java.lang.String remoteFileName)
Upload a file to the FTP server.
|
java.lang.String |
uploadFile(java.lang.String localFileName,
java.lang.String remoteFileName,
WriteMode writeMode)
Upload a file to the FTP server.
|
FileTransferOutputStream |
uploadStream(java.lang.String remoteFileName)
Upload a file to the FTP server by writing to a stream.
|
FileTransferOutputStream |
uploadStream(java.lang.String remoteFileName,
WriteMode writeMode)
Upload a file to the FTP server by writing to a stream.
|
public boolean isConnected()
isConnected
in interface FileTransferClientInterface
public java.lang.String getRemoteHost()
getRemoteHost
in interface FileTransferClientInterface
public void setRemoteHost(java.lang.String remoteHost) throws FTPException
setRemoteHost
in interface FileTransferClientInterface
remoteHost
- The IP address or name of the remote hostFTPException
- Thrown if the client is already connected to the server.public int getTimeout()
getTimeout
in interface FileTransferClientInterface
public void setTimeout(int timeout) throws FTPException
setTimeout
in interface FileTransferClientInterface
timeout
- the timeout to use in millisecondsFTPException
- Thrown if the client is already connected to the server.public int getRemotePort()
getRemotePort
in interface FileTransferClientInterface
public void setRemotePort(int remotePort) throws FTPException
setRemotePort
in interface FileTransferClientInterface
remotePort
- The port to use.FTPException
- Thrown if the client is already connected to the server.public void setContentType(FTPTransferType type) throws java.io.IOException, FTPException
setContentType
in interface FileTransferClientInterface
type
- transfer typeFTPException
java.io.IOException
FTPException
public FTPTransferType getContentType()
getContentType
in interface FileTransferClientInterface
public void setDetectContentType(boolean detectContentType)
setDetectContentType
in interface FileTransferClientInterface
detectContentType
- true if detecting content type, false if notpublic boolean isDetectContentType()
isDetectContentType
in interface FileTransferClientInterface
public void setUserName(java.lang.String userName) throws FTPException
setUserName
in interface FileTransferClientInterface
userName
- user-name to log in with.FTPException
public java.lang.String getPassword()
getPassword
in interface FileTransferClientInterface
public void setPassword(java.lang.String password) throws FTPException
setPassword
in interface FileTransferClientInterface
password
- password to log in with.FTPException
public java.lang.String getUserName()
getUserName
in interface FileTransferClientInterface
public AdvancedFTPSettings getAdvancedFTPSettings()
getAdvancedFTPSettings
in interface FileTransferClientInterface
public AdvancedGeneralSettings getAdvancedSettings()
getAdvancedSettings
in interface FileTransferClientInterface
public void setEventListener(EventListener listener)
setEventListener
in interface FileTransferClientInterface
listener
- event listener referencepublic void connect() throws FTPException, java.io.IOException
connect
in interface FileTransferClientInterface
FTPException
java.io.IOException
public void manualLogin() throws FTPException, java.io.IOException
FTPException
java.io.IOException
public FileStatistics getStatistics()
getStatistics
in interface FileTransferClientInterface
public java.lang.String executeCommand(java.lang.String command) throws FTPException, java.io.IOException
executeCommand
in interface FileTransferClientInterface
command
- command stringFTPException
java.io.IOException
public void cancelAllTransfers()
cancelAllTransfers
in interface FileTransferClientInterface
public java.lang.String getSystemType() throws FTPException, java.io.IOException
getSystemType
in interface FileTransferClientInterface
FTPException
java.io.IOException
public java.lang.String[] directoryNameList() throws FTPException, java.io.IOException
directoryNameList
in interface FileTransferClientInterface
FTPException,
- IOExceptionFTPException
java.io.IOException
public java.lang.String[] directoryNameList(java.lang.String directoryName, boolean isLongListing) throws FTPException, java.io.IOException
directoryNameList
in interface FileTransferClientInterface
directoryName
- name of the directory (generally not a path). Some
servers will accept a wildcard.isLongListing
- true if the listing is a long format listingFTPException,
- IOExceptionFTPException
java.io.IOException
public FTPFile[] directoryList() throws FTPException, java.io.IOException, java.text.ParseException
directoryList
in interface FileTransferClientInterface
FTPException,
- IOExceptionjava.text.ParseException
FTPException
java.io.IOException
public FTPFile[] directoryList(java.lang.String directoryName) throws FTPException, java.io.IOException, java.text.ParseException
directoryList
in interface FileTransferClientInterface
directoryName
- name of the directory (generally not a path). Some
servers will accept a wildcard.FTPException,
- IOExceptionjava.text.ParseException
FTPException
java.io.IOException
public byte[] downloadByteArray(java.lang.String remoteFileName) throws FTPException, java.io.IOException
downloadByteArray
in interface FileTransferClientInterface
remoteFileName
- name of the remote file to be downloadedFTPException
java.io.IOException
public void downloadFile(java.lang.String localFileName, java.lang.String remoteFileName) throws FTPException, java.io.IOException
downloadFile
in interface FileTransferClientInterface
localFileName
- name (or full path) of the local file to be downloaded toremoteFileName
- name of the remote file to be downloadedFTPException
java.io.IOException
public void downloadFile(java.lang.String localFileName, java.lang.String remoteFileName, WriteMode writeMode) throws FTPException, java.io.IOException
downloadFile
in interface FileTransferClientInterface
localFileName
- name (or full path) of the local file to be downloaded toremoteFileName
- name of the remote file to be downloadedwriteMode
- mode in which the file is written to the client machineFTPException
java.io.IOException
public FileTransferInputStream downloadStream(java.lang.String remoteFileName) throws FTPException, java.io.IOException
downloadStream
in interface FileTransferClientInterface
remoteFileName
- name of the remote file to be downloadedFTPException
java.io.IOException
public java.lang.String uploadFile(java.lang.String localFileName, java.lang.String remoteFileName) throws FTPException, java.io.IOException
uploadFile
in interface FileTransferClientInterface
localFileName
- name (or full path) of the local file to be downloaded toremoteFileName
- name of the remote file to be downloaded (or null to generate a unique name)FTPException
java.io.IOException
public java.lang.String uploadFile(java.lang.String localFileName, java.lang.String remoteFileName, WriteMode writeMode) throws FTPException, java.io.IOException
uploadFile
in interface FileTransferClientInterface
localFileName
- name (or full path) of the local file to be downloaded toremoteFileName
- name of the remote file to be downloaded (or null to generate a unique name)writeMode
- mode to write to the remote file withFTPException
java.io.IOException
public FileTransferOutputStream uploadStream(java.lang.String remoteFileName) throws FTPException, java.io.IOException
FileTransferOutputStream.getRemoteFile()
uploadStream
in interface FileTransferClientInterface
remoteFileName
- name of the remote file to be uploadedFTPException
java.io.IOException
public FileTransferOutputStream uploadStream(java.lang.String remoteFileName, WriteMode writeMode) throws FTPException, java.io.IOException
FileTransferOutputStream.getRemoteFile()
uploadStream
in interface FileTransferClientInterface
remoteFileName
- name of the remote file to be uploadedwriteMode
- mode for writing to the server (supporting use of append)FTPException
java.io.IOException
public long getSize(java.lang.String remoteFileName) throws FTPException, java.io.IOException
getSize
in interface FileTransferClientInterface
remoteFileName
- name of remote fileFTPException
java.io.IOException
public java.util.Date getModifiedTime(java.lang.String remoteFileName) throws FTPException, java.io.IOException
getModifiedTime
in interface FileTransferClientInterface
remoteFileName
- name of remote fileFTPException
java.io.IOException
public void setModifiedTime(java.lang.String remoteFileName, java.util.Date modifiedTime) throws FTPException, java.io.IOException
setModifiedTime
in interface FileTransferClientInterface
remoteFileName
- name of remote filemodifiedTime
- new modified timeFTPException
java.io.IOException
public boolean exists(java.lang.String remoteFileName) throws FTPException, java.io.IOException
exists
in interface FileTransferClientInterface
remoteFileName
- name of remote fileFTPException
java.io.IOException
public void deleteFile(java.lang.String remoteFileName) throws FTPException, java.io.IOException
deleteFile
in interface FileTransferClientInterface
remoteFileName
- name of remote fileFTPException
java.io.IOException
public void rename(java.lang.String renameFromName, java.lang.String renameToName) throws FTPException, java.io.IOException
rename
in interface FileTransferClientInterface
renameFromName
- original namerenameToName
- new nameFTPException,
- IOExceptionFTPException
java.io.IOException
public void changeDirectory(java.lang.String directoryName) throws FTPException, java.io.IOException
changeDirectory
in interface FileTransferClientInterface
directoryName
- name the remote directory to change intoFTPException,
- IOExceptionFTPException
java.io.IOException
public void changeToParentDirectory() throws FTPException, java.io.IOException
changeToParentDirectory
in interface FileTransferClientInterface
FTPException,
- IOExceptionFTPException
java.io.IOException
public java.lang.String getRemoteDirectory() throws java.io.IOException, FTPException
getRemoteDirectory
in interface FileTransferClientInterface
FTPException
java.io.IOException
public void createDirectory(java.lang.String directoryName) throws FTPException, java.io.IOException
createDirectory
in interface FileTransferClientInterface
directoryName
- name the remote directory to createFTPException,
- IOExceptionFTPException
java.io.IOException
public void deleteDirectory(java.lang.String directoryName) throws FTPException, java.io.IOException
deleteDirectory
in interface FileTransferClientInterface
directoryName
- name the remote directory to createFTPException,
- IOExceptionFTPException
java.io.IOException
public void disconnect() throws FTPException, java.io.IOException
disconnect
in interface FileTransferClientInterface
FTPException,
- IOExceptionFTPException
java.io.IOException
public void disconnect(boolean immediate) throws FTPException, java.io.IOException
disconnect
in interface FileTransferClientInterface
FTPException,
- IOExceptionFTPException
java.io.IOException