(Solved): xml-exercise-step-1-create-dtd-peoplexml-add-top-new-file-peoplewithdtdxml-older-content-u-q37054776….

QUESTION

This is an XML exercise.

Step 1:

Create a DTD for People.xml and add it to the top of a new file,PeopleWithDTD.xml, with the older contentunderneath:  

<!DOCTYPE People [

<!ELEMENT People (Person*)>

<!ELEMENT Person (Name, Description)>

<!ATTLIST Person bornDate CDATA #REQUIRED>

<!ATTLIST Person diedDate CDATA #REQUIRED>

<!ELEMENT Name (#PCDATA)>

<!ELEMENT Description (#PCDATA)>

]>

<People>

<!– rest of people.xml –>

</People>

Step 2:

Modify SaxParser4.java so that the class is now SaxParser5 andchange the main() method to set the ErrorHandler as shownpreviously:   

public static void main( String[] argv ){

String inputFile =

Leave a Comment

Your email address will not be published. Required fields are marked *