FileDocCategorySizeDatePackage
OutFile.javaAPI DocExample2769Mon Apr 06 18:10:24 BST 1998com.bruceeckel.tools

OutFile

public class OutFile extends DataOutputStream

Fields Summary
Constructors Summary
public OutFile(String filename)

    super(
      new BufferedOutputStream(
        new FileOutputStream(filename)));
  
public OutFile(File file)

    this(file.getPath());
  
Methods Summary