D**B 发帖数: 117 | 1 How to handle XML in JDK1.3:
1.Are there any APIs for that?
2.What the hell is XML parser? Is it for validating the XML files, or can be
used in the program to handle XML stream?
Thnaks a lot. | r****a 发帖数: 2 | 2 DOM or SAX, as i know
【在 D**B 的大作中提到】 : How to handle XML in JDK1.3: : 1.Are there any APIs for that? : 2.What the hell is XML parser? Is it for validating the XML files, or can be : used in the program to handle XML stream? : Thnaks a lot.
| w*****h 发帖数: 139 | 3 1. It's in a seperate package: jaxp.
2. XML Parser parses the text document into DOM tree structure, and there
are plenty of APIs defined to access the DOM tree.
【在 D**B 的大作中提到】 : How to handle XML in JDK1.3: : 1.Are there any APIs for that? : 2.What the hell is XML parser? Is it for validating the XML files, or can be : used in the program to handle XML stream? : Thnaks a lot.
|
|