Package ch.rabanti.nanoxlsx4j.lowLevel
Class XlsxWriter
java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.XlsxWriter
Class for low level handling (XML, formatting, preparing of packing)
This class is only for internal use. Use the high level API (e.g. class Workbook) to manipulate data and create Excel files.
This class is only for internal use. Use the high level API (e.g. class Workbook) to manipulate data and create Excel files.
- Author:
- Raphael Stoeckli
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final double
Maximum valid OAdate value (9999-12-31)static final double
Minimum valid OAdate value (1900-01-01) -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic byte[]
createBytesFromDocument
(Document document) Method to convert an XML document to a byte arraycreateXMLDocument
(String rawInput) Creates an XML document from a stringvoid
save()
Method to save the workbookvoid
saveAsStream
(OutputStream stream)
-
Field Details
-
MIN_OADATE_VALUE
public static final double MIN_OADATE_VALUEMinimum valid OAdate value (1900-01-01)- See Also:
-
MAX_OADATE_VALUE
public static final double MAX_OADATE_VALUEMaximum valid OAdate value (9999-12-31)- See Also:
-
-
Constructor Details
-
XlsxWriter
Constructor with defined workbook object- Parameters:
workbook
- Workbook to process
-
-
Method Details
-
createXMLDocument
Creates an XML document from a string- Parameters:
rawInput
- String to process- Returns:
- Formatted XML document
- Throws:
IOException
- Thrown in case of an error while creating the XML document
-
save
Method to save the workbook- Throws:
IOException
- Thrown in case of an error
-
saveAsStream
- Throws:
IOException
-
createBytesFromDocument
Method to convert an XML document to a byte array- Parameters:
document
- Document to process- Returns:
- array of bytes (UTF-8)
- Throws:
IOException
- Thrown if the document could not be converted to a byte array
-