om.XmlWriter.createFileWriter
Creates an om.SaxDocumentHandler
object writing to a file.
Syntax
om.XmlWriter.createFileWriter(
path STRING )
RETURNS om.SaxDocumentHandler
- path is the path to the file.
Usage
The om.XmlWriter.createFileWriter()
class method creates an
om.SaxDocumentHandler
object that will write to the specified
file when using the om.SaxDocumentHandler
methods.
The file is created if it does not exist. If the file cannot be created, the
method returns NULL
.
When passing NULL
as file name, the XmlWriter can be used
to write to stdout.
Example
DEFINE w om.SaxDocumentHandler
...
LET w = om.XmlWriter.createFileWriter("mydata.xml")
IF w IS NULL THEN
ERROR "Could not create file."
EXIT PROGRAM 1
END IF
...
-- Create an XmlWriter object to write to stdout:
LET w = om.XmlWriter.createFileWriter(NULL)
...