The SAXCount sample parses an XML file and prints out a count of the number of
elements in the file. To run SAXCount, enter the following
To use the validating parser, use
Here is a sample output from SAXCount
 |  |  |
 | cd xerces-c-1_1_0-linux/samples/data
SAXCount -v personal.xml
personal.xml: 60 ms (37 elems, 12 attrs, 134 spaces, 134 chars) |  |
 |  |  |
Running SAXCount with the validating parser gives a different result because
ignorable white-space is counted separately from regular characters.
 |  |  |
 | SAXCount personal.xml
personal.xml: 10 ms (37 elems, 12 attrs, 0 spaces, 268 chars) |  |
 |  |  |
Note that the sum of spaces and chracters in both versions is the same.
 | The time reported by the program may be different depending on your
machine processor. |