Package csheets.io

Provides support for importing and exporting workbooks to and from various file formats.

See:
          Description

Interface Summary
Codec An interface for classes capable of reading and writing workbooks.
 

Class Summary
CLSCodec A codec for the native CleanSheets format that uses Java Serialization.
CodecFactory A factory for codecs.
CSVCodec A codec for comma-separated files.
DynamicObjectInputStream An object input stream that resolves class descriptors through a given class loader, and thereby allowing dynamic deserialization.
FilenameExtensionFilter A filename filter for filtering on filename extensions.
NamedProperties An extension of properties, predetermined to be saved in a specified file.
 

Package csheets.io Description

Provides support for importing and exporting workbooks to and from various file formats. Classes that can read and/or write Workbooks to/from files of a certain format should implement the Codec interface. Codecs must be named nnnCodec where nnn is the extension of files of that format.

Also provided is a factory for accessing codecs, and some I/O related utility classes.