Package com.darwinsys.io

Classes for input and output operations, using Java's underlying I/O classes.

See:
          Description

Interface Summary
Checkpointer  
DumpGetter The general contract of a class to get bytes.
FileHandler Visitor interface for Crawler.
 

Class Summary
Crawler Simple directory crawler, using a Filename Filter to select files and the Visitor pattern to process each chosen file.
CrawlerCallback  
DataIO Some I-O primitives for datastreams.
Dumper Class to do formatted dump ("hex dump") of data from various sources.
FileIO Some file I-O primitives reimplemented in Java.
NextFD Simple wrapper class for native nextfd method; nextfd is used to watch filedesc leaks.
RevLines Reverse a file by lines (simple algorithm, keeps file in memory).
StreamDumpGetter A DumpGetter that reads from a file.
TextAreaOutputStream Simple way to "print" to a JTextArea; just say PrintStream out = new PrintStream(new TextAreaOutputStream(myTextArea)); Then out.println() et all will all appear in the TextArea.
TextAreaWriter Simple way to "print" to a JTextArea; just say PrintWriter out = new PrintWriter(new TextAreaWriter(myTextArea)); Then out.println() et all will all appear in the TextArea.
 

Package com.darwinsys.io Description

Classes for input and output operations, using Java's underlying I/O classes.



Copyright © 1996-2004 Ian F. Darwin. See license.html for usage license.