Prehľad
Nástroje obsahu
INT %XML_OpenDocument( TEXT in fileName, BOOL in validate TEXT in features := ""[, BOOL in preserveWhitespace := @TRUE]] )
fileName | Name of XML file on disk. | ||||||||||||||
validate | @TRUE - XML document
validation (if the XML
document contains DTD). @FALSE - no XML document validation (if the XML document contains DTD). |
||||||||||||||
features | Optional parameter of Text type which allows to
change default values of SAX Parser´s some parameters and to
influence its behaviour and also the content of loaded document in
memory. The parameters are recorded in pairs - name and numerical value. The parts are separated by blank space. If the value is 0 (zero) the parameter is disabled. If user write the invalid name of parameter it does not mean an error. A complete list of parameters is mentioned here http://xerces.apache.org/xerces2-j/features.html. The actual version supports following two parameters:
http://xml.org/sax/features/namespaces
or http://xml.org/sax/features/namespace-prefixes
|
||||||||||||||
preserveFeatures | @TRUE - text nods containing so-called white signs will remain
as they were in XML document. @FALSE - text nods containing so-called whit signs will be ignored when the document is parsed. |
INT _doc _doc := %XML_OpenDocument("c:\data.xml", @TRUE)
TEXT _features _features := "http://xml.org/sax/features/namespace-prefixes 1" _hXML := %XML_OpenDocument (_fileName, @FALSE, _features)
Pridať komentár