473,406 Members | 2,707 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Problems with JDOM

I used JDOM.jar to process xml-based document.

Recently, I meet such a problem that I can not solve.
First, I use the following code generate xml text:

Element root = new Element("Root");
Document doc = new Document(root);
... // add some elements appended to root

XMLOutputter out = new XMLOutputter();
out.setFormat(Format.getPrettyFormat());

String xml = out.outputString(doc);

The content in "xml" is something like:

<?xml version="1.0" encoding="UTF-8"?>
<Root>
...
</Root>

After then, I use the following code to build a DOM based on "xml":

SAXBuilder builder = new SAXBuilder(false);
builder.setIgnoringElementContentWhitespace(true);
Document doc = builder.build(xml);

The problem comes out, the exception message says:

java.net.MalformedURLException: no protocol: <?xml version="1.0"
encoding="UTF-8"?>
<Root>
...
</Root>

How to solve it? Thanks in advance!

Mar 5 '06 #1
2 5822


zh*****@gmail.com wrote:

String xml = out.outputString(doc);

The content in "xml" is something like:

<?xml version="1.0" encoding="UTF-8"?>
<Root>
...
</Root>
SAXBuilder builder = new SAXBuilder(false);
builder.setIgnoringElementContentWhitespace(true);
Document doc = builder.build(xml);

The problem comes out, the exception message says:

java.net.MalformedURLException: no protocol: <?xml version="1.0"


Well look at the API
<http://www.jdom.org/docs/apidocs/org/jdom/input/SAXBuilder.html#build(java.lang.String)>
if you pass in a string to the build method then it should be the URL of
the XML to load and not a string with XML markup.
So you need to use e.g.
<http://www.jdom.org/docs/apidocs/org/jdom/input/SAXBuilder.html#build(java.io.Reader)>
and pass in a StringReader like this
builder.build(new StringReader(xml)

--

Martin Honnen
http://JavaScript.FAQTs.com/
Mar 5 '06 #2
zh*****@gmail.com wrote:
I used JDOM.jar to process xml-based document.

Recently, I meet such a problem that I can not solve.
First, I use the following code generate xml text:

Element root = new Element("Root");
Document doc = new Document(root);
... // add some elements appended to root

XMLOutputter out = new XMLOutputter();
out.setFormat(Format.getPrettyFormat());

String xml = out.outputString(doc);

The content in "xml" is something like:

<?xml version="1.0" encoding="UTF-8"?>
<Root>
...
</Root>

After then, I use the following code to build a DOM based on "xml":

SAXBuilder builder = new SAXBuilder(false);
builder.setIgnoringElementContentWhitespace(true);
Document doc = builder.build(xml);

The problem comes out, the exception message says:

java.net.MalformedURLException: no protocol: <?xml version="1.0"
encoding="UTF-8"?>
<Root>
...
</Root>

How to solve it? Thanks in advance!


The message should give a hint, but looking at the SAXBuilder javadoc
verifies it. If you pass the SAXBuilder build method a string, it
expects that string to be a URI from which the content can be retrieved
and not the content itself.

There are overloads for build accepting java.io.InputStream or
java.io.Reader.

The quick fix (to at least get you on your way again) is to change the
line loading the Document from the string to:

Document doc = builder.build(new StringReader(xml));
Mar 5 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: mali_djuro | last post by:
Hi all, i used JDOM to create XML file. first, i get data from database and create Document object. in some data i have quotas, so it makes replacment in content of elements. for example: if i...
2
by: Praveen Chhangani | last post by:
Folks, I was wondering if it were possible to convert an org.jdom.doc to an org.w3c.doc document. Essentially what I have is an already parsed document using jdom and I would like to use the...
2
by: Andrew | last post by:
I am having some problems with JDOM in Builder 9 version. I ve actually used all the latest JDOM libraries but it seems that the RunTime environment keeps giving me JDOMExceptions whetever I do. ...
0
by: Ekim | last post by:
hy, I've got a problem concerning my DTD when including a XML-file into a Java-JDOM-program. I always get the following error message: "relative URI "Treibstoff-Verbrauch_01.dtd"; cannot be...
3
by: Michael | last post by:
hello, I'm a java programmer, and my program will require to parse XML documents and extract data from it, then built a new XML document. Should JDOM or Xerces be the best for me? Please help....
1
by: Bernd Oninger | last post by:
When I compile my java source with jdom b10 the compiler tells me that the instrcution XMLOutputter outputter = new XMLOutputter(" ", true); Outputter.output(doc, new FileWriter("t.xml")); is...
3
by: Bernd Oninger | last post by:
When I run the successfully compiled java source shown at the end I got a runtime error: Exception in thread "main" java.lang.NoClassDefFoundError: org/jdom/Content Where is the missing class ?...
0
by: kyancy | last post by:
Hello All. We have several XML schemas to describe common component document parts. We then create new XML schemas as necessary that use "xsd:import schemaLocation=whateverLocation.." to include...
4
by: Vijay Anandh | last post by:
Hi All, I am new to JDOM and I am currently coding a program to build xml files using JDOM. The size of the xml file which i am goin to build will be in the order of a few GB's( 1 to 5 GB)....
0
by: idorjee | last post by:
Hi Can anyone please help me why my java program says the following when I try to build it in NetBeans: Compiling 1 source file to /Users/Desktop/Jproject/jdom/build/classes...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.