Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

JDOM---DocType question

843834Jul 27 2001 — edited Jul 27 2001
hi all

i got a rather simple question here.
how do u construct a DocType to look like the following:

<!DOCTYPE svg SYSTEM "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd">

thanks :)

Comments

843834
Document doc;
...
String url = "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd";
doc.setDocType(new DocType(doc.getRootElement().getName(), url));
1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 24 2001
Added on Jul 27 2001
1 comment
84 views