Version 1.0.0
Implementation of an XML Parser uing JApplet and displaying the details of this XML document in a tabular format using Java Swing Components.
NOTE: Jave 9 should be used in order to execute the program as we are using an Applet.
Installation of JDK 9 is a pre-requisite.
- Steps to follow: -
To deploy this project on a machine with higher version of JDK and JDK 9.
javacold XMLParser.java
Followed by
appletviewer XMLParser.java
To deploy this project on a machine with JDK 9.
javac XMLParser.java
Followed by
appletviewer XMLParser.java
Used: Java
Toolkits: AWT, Swing
With the help of this project, I understood the working of an XML Parser. I understood how process of reading an XML document and providing an interface to the user application for accessing the document works.