Example usage for java.io FileOutputStream subclass-usage

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

Introduction

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

Usage

From source file Main.java

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

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

From source file org.structr.web.common.ClosingFileOutputStream.java

/**
 */
public class ClosingFileOutputStream extends FileOutputStream {

    private static final Logger logger = LoggerFactory.getLogger(ClosingFileOutputStream.class);

From source file org.apache.lenya.util.XPSFileOutputStream.java

/**
 * DOCUMENT ME!
 */
public class XPSFileOutputStream extends FileOutputStream {
    static Logger log = Logger.getLogger(XPSFileOutputStream.class);
    private static final String suffixBase = ".xpstemp";

From source file org.cesecore.audit.audit.SigningFileOutputStream.java

/**
 * Wrapper of a FileOutputStream that also produces a signature for the same data
 * that was written to disk. This way we know that we are not signing manipulated
 * data read back from the disk.
 * 
 * The signature is written as raw data to a separate file with the extension ".sig".