Example usage for java.io FileInputStream subclass-usage

List of usage examples for java.io FileInputStream subclass-usage

Introduction

In this page you can find the example usage for java.io FileInputStream subclass-usage.

Usage

From source file Main.java

public class Main extends FileInputStream {
    public Main() throws Exception {
        super("C://test.txt");
    }

    public static void main(String[] args) throws Exception {

From source file org.mule.transport.sftp.SftpFileArchiveInputStream.java

/**
 * Ensures that the file is moved to the archiveFile folder after a successful
 * consumption of the file
 * 
 * @author Magnus Larsson
 */

From source file org.mule.transport.file.ReceiverFileInputStream.java

/**
 * This implementation is used when streaming and will move or delete the source file
 * when the stream is closed.
 */
class ReceiverFileInputStream extends FileInputStream {
    protected transient Log logger = LogFactory.getLog(getClass());

From source file com.axcessfinancial.fisintegration.platform.custom.ReceiverFileInputStream.java

/**
 * This implementation is used when streaming and will move or delete the source file
 * when the stream is closed.
 */
public class ReceiverFileInputStream extends FileInputStream implements Serializable {
    private static final long serialVersionUID = 7193275460656051163L;

From source file mitm.common.util.DeleteFileOnCloseFileInputStream.java

/**
 * Extension of {@link FileInputStream} that closes the file when the {@link FileInputStream} is closed.
 * 
 * 
 * @author Martijn Brinkers
 *