Tagged Questions

3
votes
4answers
2k views

Parsing xml with dom4j or jdom or anyhow

I wanna read feed entries and I'm just stuck now. Take this for example : http://stackoverflow.com/feeds/question/2084883 lets say I wanna read all the summary node value inside each entry node in ...
2
votes
1answer
192 views

Parsing malformed/incomplete/invalid XML files

I have a process that parses an XML file using JDOM and xpath to parse the file as shown below: private static SAXBuilder builder = null; private static Document doc = null; ...
1
vote
2answers
2k views

Programmatically creating an XML Document using an XSD

I need to create XML documents using built-in java org.w3c.dom or jdom packages conforming to a set of XSD files. The XSD files are similar but not the same. In essence, I need to create the XML file ...
0
votes
2answers
62 views

XML Parsing using DOM

I have an XML with the following data... <movies total="3"> <movie cover="9_pro.jpg" Title="A Very " MovieDuration="1.29" showtime="2:50 PM" theatre="UV3"/> <movie ...
0
votes
1answer
63 views

XML Parsing and editing with Jdom in Java

I'm struggling with this problem for a week. I try to write a program in java that can edit ebooks. My choosed ebook format is fictionbook which contains its data in an xml like file. I can open this ...
0
votes
2answers
133 views

java android pass resource file path to a method parameter

I have an xml file under res folder, the structure is res/raw/myfile.xml. Now i am using JDOM for parsing the file using SAXBuilder.build("raw/myfile.xml"); And in Logcat it is showing that it cannot ...
0
votes
1answer
304 views

unknown protocol: c (JDOM a SAXBuilder)

I'm using JDOM with SAXBuilder to parse XML files, today I have a problem with a file wich is throwing this error : java.net.MalformedURLException: unknown protocol: c at ...
0
votes
1answer
111 views

Getting JDOMException on One Machine but the same xml works fine in another

I am hitting an xml and getting the response back in inputstream. This xml is on the remote server. Whenever I am running my code on the server, it gives me JDOMException,but the same code, I am ...