This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes XML and Related Technologies and the fly likes Document:  No DOCTYPE declaration, Root is [Element: <nodename/>] Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » XML and Related Technologies
Reply Bookmark "Document:  No DOCTYPE declaration, Root is [Element: <nodename/>]" Watch "Document:  No DOCTYPE declaration, Root is [Element: <nodename/>]" New topic
Author

Document: No DOCTYPE declaration, Root is [Element: <nodename/>]

Raguram Ramasubbu
Greenhorn

Joined: Oct 27, 2007
Posts: 1
Hi,

It would be better if somebody helps me to resolve an issue I am facing while converting XML string into JDom Document object.

The XML string looks as

<?xml version="1.0" encoding="UTF-8"?>
<items>
<item>
<displayText>
</displayText>
<linkItem>
<link pageID="Person_homePagePage.do" modal="true">
<displayText>David</displayText>
<params>
<param name="id">10000</param>
</params>
</link>
</linkItem>
<displayText>is 30 years old.</displayText>
</item>
</items>

and java code looks as

org.jdom.Document document = null;
SAXBuilder builder = new SAXBuilder();

try {
document = builder.build(new StringReader(xmlString));
} catch (JDOMException e) {
//
} catch (IOException e) {
//
} catch (Exception e) {
//
}
return document;

in runtime I get error like [Document: No DOCTYPE declaration, Root is [Element: <items/>]]

Can somebody helps me what is the problem with the XML and how can I resolve this issue?

Thanks in advance.
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16487
    
    2

What makes you think that's an error? If an exception were really being thrown, you wouldn't know what it was because your catch-blocks are all empty. (Don't do that, you need to know what the exception was). So where is that output coming from in your code?

(And when you post code, or XML, please post it inside the "code" tags which you can get by clicking the "Code" button above the box you're about to post in.)
David Newton
Author
Rancher

Joined: Sep 29, 2008
Posts: 12617

Well, there's no doctype; maybe you need one?
 
jQuery in Action, 2nd edition
 
subject: Document: No DOCTYPE declaration, Root is [Element: <nodename/>]
 
Similar Threads
Urgent help !!!!!!
reading/updating child node attribute in xml String
How to save the content withen a table into a XML file?
Servlet cannt find path of xml file[jbuilder 7.0 servlet,]
Read data to the xml file from the database?