Uses of Class
com.enterprisedt.net.ftp.FileTransferOutputStream
Packages that use FileTransferOutputStream
Package
Description
FileTransferClient is the key
class for edtFTPj/Free and provides basic FTP features.This package contains the classes used for asynchronous programming - primarily the XXXResult classes,
which are returned from asynchronous methods and used to provide details about the operation,
such as what file is being transferred.
Contains classes for SFTP (FTP via SSH) client functionality.
-
Uses of FileTransferOutputStream in com.enterprisedt.net.ftp
Subclasses of FileTransferOutputStream in com.enterprisedt.net.ftpModifier and TypeClassDescriptionclassRepresents an output stream that writes to an FTP server, permitting the user to upload a file by writing to the stream.Methods in com.enterprisedt.net.ftp that return FileTransferOutputStreamModifier and TypeMethodDescriptionFileTransferClient.uploadStream(String remoteFileName) Upload a file to the FTP server by writing to a stream.FileTransferClient.uploadStream(String remoteFileName, WriteMode writeMode) Upload a file to the FTP server by writing to a stream.FileTransferClientInterface.uploadStream(String remoteFileName) Upload a file to the FTP server by writing to a stream.FileTransferClientInterface.uploadStream(String remoteFileName, WriteMode writeMode) Upload a file to the FTP server by writing to a stream.SecureFileTransferClient.uploadStream(String remoteFileName) Upload a file to the FTP server by writing to a stream.SecureFileTransferClient.uploadStream(String remoteFileName, WriteMode writeMode) Upload a file to the FTP server by writing to a stream.static FileTransferOutputStreamFileTransferClient.uploadURLStream(String ftpURL) Open an OutputStream for the given FTP URL.static FileTransferOutputStreamSecureFileTransferClient.uploadURLStream(String ftpURL) Open an OutputStream for the given FTP URL. -
Uses of FileTransferOutputStream in com.enterprisedt.net.ftp.async
Methods in com.enterprisedt.net.ftp.async that return FileTransferOutputStreamModifier and TypeMethodDescriptionUploadStreamResult.getOutputStream()Get the input stream from which to read the file from the serverMethods in com.enterprisedt.net.ftp.async with parameters of type FileTransferOutputStreamModifier and TypeMethodDescriptionvoidAsyncCallback.UploadStream.onUploadingStream(FileTransferOutputStream outStr, UploadStreamResult result) voidUploadStreamResult.setOutputStream(FileTransferOutputStream str) Set the input stream. -
Uses of FileTransferOutputStream in com.enterprisedt.net.ftp.ssh
Subclasses of FileTransferOutputStream in com.enterprisedt.net.ftp.sshModifier and TypeClassDescriptionclassAn output stream that writes to an SFTP server, permitting the user to upload a file by writing to the stream.