Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
XMLTools[ParseFile] - read an XML document from a file
Calling Sequence
ParseFile(fileName, opts)
Parameters
fileName
-
string; name of file to read
opts
equation(s) of the form option=value where option is one of validate, entities, prolog, or whitespace; specify parsing options
Description
The ParseFile(fileName) command reads XML data from the file fileName.
The file is closed after it is read.
The opts argument can contain one or more equations that set parsing options.
The validate option determines whether a validating or a non-validating parser should be used. Possible values are true and false. By default validate is set to false.
The entities option determines whether the parser should resolve entity references. Possible values are name and value. By default entities is set to name.
The prolog option determines whether prolog should be included in the document. Possible values are true and false. By default prolog is set to false.
The whitespace option indicates whether ignorable whitespace should be included in the document. Possible values are true and false. This option is effective only if validate is set to true. By default whitespace is set to true.
Examples
See Also
XMLTools, XMLTools[ParseString], XMLTools[ToString]
Download Help Document