Tagged Questions

8
votes
2answers
348 views

What is best way to change one value in xml files in Java?

I have xml file and I know the node name I need to change the value for. The nodename is ipAddress. I can use JDOM, get document, get node and change the value and write it or I can write xslt ...
6
votes
2answers
109 views

How to parse an XML file containing BOM?

I want to parse an XML file from URL using JDOM. But when trying this: SAXBuilder builder = new SAXBuilder(); builder.build(aUrl); I get this exception: Invalid byte 1 of 1-byte UTF-8 sequence. ...
5
votes
1answer
1k views

Using JDOM to Parse XML file with external DTD that has not been declared in the XML file

In my XML file I have some entities such as ’ So I have created a DTD tag for my XML document to define these entities. Below is the Java code used to read the XML file. SAXBuilder builder ...
5
votes
4answers
1k views

Performing complicated XPath queries in Scala

What's the simplest API to use in scala to perform the following XPath queries on a document? //s:Annotation[@type='attitude']/s:Content/s:Parameter[@role='type' and not(text())] ...
5
votes
2answers
6k views

Default XML namespace, JDOM, and XPath

I want to use JDOM to read in an XML file, then use XPath to extract data from the JDOM Document. It creates the Document object fine, but when I use XPath to query the Document for a List of ...
4
votes
1answer
161 views

xpath 2.0 for java possible

Hallo, What package shall I use for XPath? I want wo query for elements and then extract some values around these nodes. Maybe one or more levels higher, some attributes. javax.xml.xpath is XPath ...
3
votes
2answers
83 views

getting grandchildren from xml in java

I need to print out the contents of an xml file into some txt file. Here is a sample of the type of xml i want to print out: <log> <logentry revision="234"> ...
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
2answers
139 views

XML shredding via XSLT in Java

I need to transform large XML files that have a nested (hierarchical) structure of the form <Root> Flat XML Hierarchical XML (multiple blocks, some repetitive) Flat XML </Root> ...
2
votes
2answers
83 views

can't open xml file on android

I am working on an android application in which I want to parse an xml file as a local resource. I use jdom to parse it, but I have a probleme, I can not open the file and I don't know why. The error ...
2
votes
6answers
213 views

How to get node contents from JDOM

I'm writing an application in java using import org.jdom.*; My XML is valid,but sometimes it contains HTML tags. For example, something like this: <program-title>Anatomy &amp; ...
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; ...
2
votes
1answer
134 views

Format XML, one attribute per line, with JDom

I use JDom for XML parsing / formatting. I would like long lines of attributes to be split into several lines. Like : <node att1="Foo" att2="Bar" att3="Foo" /> Into : <node ...
2
votes
3answers
135 views

XML API for best performance

I have an application that works with a lot of XML data. So, I want to ask you which is the best API to handle XML in java. Today, I'm using W3 and, for performance, I want to migrate to some API. I ...
2
votes
1answer
117 views

XPath doesn't return expected values

I have XML document that I parse with jDOM and then try to take all nodes that satisfies XPath expression, but XPath always returns no elements. Here is my XML file: <?xml version="1.0" ...
2
votes
5answers
128 views

how to write xml to a stream a network of beans in a memory efficient way

Editing to specify more clearly the scenario. I have to write a xml file, the info comes from several beans (not even whole bean, jsut subset of some of them), some of the beans contain lists etc. So ...
2
votes
2answers
353 views

How can I do type-safe Xpath queries in Java?

I'm currently using JDOM for doing some simple XML parsing, and it seems like nothing's type safe - I had a similar issue with using the built-in Java DOM parser, just with lots more API to wade ...
2
votes
3answers
2k views

How can I get JDOM/XPath to ignore namespaces?

I need to process an XML DOM, preferably with JDOM, where I can do XPath search on nodes. I know the node names or paths, but I want to ignore namespaces completely because sometimes the document ...
2
votes
3answers
635 views

How to insert XHTML into XML

I'm working with JDOM at the moment. I can't think of a solution which what should essentially be an easy problem. I have a valid XHTML string: <b>M&amp;A</b> &euro; How do I ...
1
vote
2answers
39 views

Adding an element to the root element

I have an XML file that looks something like this (a maven pom.xml if anyone's familiar): <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" ...
1
vote
2answers
114 views

can't read xml file on android

I am trying to open and read a xml file as a local resource with jdom. I can open the file but then I got an error saying that the xml file is not well-formed. Here is the code : Uri path = ...
1
vote
1answer
78 views

Java: How to properly convert Windows console output to XML?

I'm trying on Windows 7 to capture the console output of one jar (written with System.out) and write it out as an XML file. This works, but I'm having encoding problems (e.g. with an "ë"). I have ...
1
vote
2answers
69 views

How to compare document objects in java with .xsd files?

I am trying to compare Document objects to understand if they are well formed or not. So to do that, I made a research about it and heard that xsd files are used to make this comparison. Can you ...
1
vote
3answers
68 views

how to insert value into xml?

I am really new to XML and JDOM so I have a noob question, sorry for that. I have a XML file and I want to insert value into it. My XML file is like that; <?xml version="1.0"?> <message> ...
1
vote
2answers
140 views

How to create a XML object from String in Java?

I am trying to write a code that helps me to create a XML object. For example, I will give a string to a function and it will return me a XMLObject . XMLObject convertToXML(String s) {} When I was ...
1
vote
1answer
109 views

Failing to extract xml value element using JDOM & Xpath

I have a method (getSingleNodeValue()) which when passed an xpatch expression will extract the value of the specified element in the xml document refered to in 'doc'. Assume doc at this point has been ...
1
vote
1answer
59 views

Why I can't get the attributes from the root element using JDOM

Lets consider this xml file : <?xml version="1.0" encoding="UTF-8"?> <root attribute="value"> <element>myElement</element> </root> I'm trying to parse the file ...
1
vote
3answers
70 views

How can I use jdom to check wether an element is present in a file or not

I have an XML file like this: <?xml version="1.0" encoding="utf-8"?> <RootElement> <Achild> ..... </Achild> </RootElement> How can I check if the File contains ...
1
vote
1answer
79 views

Parse xPath like string and create xml document using jdom

I am trying to build some utility to create document model from a string like xpath: setName(document,"college/class/student[14]@name","Rob"), so, this function should create nodes and attributes ...
1
vote
2answers
294 views

Parsing Facebooks XML query response problem

Hey guys! :) I'm working on a service wich catches the number of likes, shares and so on from the Facebook API. But there is a problem because i get a nullpointer exception from ...
1
vote
2answers
87 views

when i parse a xml document by jdom, i found that some '\r' characters were lost

When i parse a xml document by jdom, i found that some '\r' characters were lost in Document object. for instance: aa\r\nbb After parsing it, i find that the property 'text'of Element 'b' is ...
1
vote
2answers
101 views

How to retrieve an Element mixed children as text (JDOM)

I have an XML like the following: <documentation> This value must be <i>bigger</i> than the other. </documentation> Using JDOM, I can get the following text structures: ...
1
vote
1answer
122 views

java jdom xml copy a section of xml

Let me first show you the xml structure: <config> <engine> <eid>1</eid> <somechild>text</somechild> <somemodechild> ...
1
vote
2answers
347 views

Connection Refused exception upon reading/parsing a shortcut file present in network drive

SAXBuilder builder = new SAXBuilder(); try { File f = new File("\\\\bady\\SShare\\mart.xml"); System.out.println(f.exists()); // Returns False ...
1
vote
1answer
371 views

Why does XPath.selectNodes(context) always use the whole document in JDOM

I'm trying to run the same query on several different contexts, but I always get the same result. This is an example xml: <root> <p> <r> <t>text</t> </r> ...
1
vote
1answer
344 views

Error while XML parsing with JDOM - Content not allowed in prolog

I get this error while parsing an xml file using JDOM. What is happening is, I receive a stream of data which is an xml combined with a pdf as an attachment within it. So when I try to create a ...
1
vote
1answer
71 views

How do I select something with a blank namespace with Jaxen?

I have the following xml: <config xmlns="http://www.someurl.com"> <product> <brand> <content /> </brand> </product> </config> I'm reading ...
1
vote
1answer
500 views

Get Text Content of xml element

Hola! ;) So, i have some question about xml Documents in Java. Can i get all text(only text) content of some element and all descendant's elements of this element, without to iterate through all this ...
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 ...
1
vote
3answers
840 views

Problems with XML/DOM tree rewriting using JDOM (ConcurrentModificationException)

I need to walk a JDOM tree and make changes as I go along; at this point, changes are mostly adding new elements right now but could also include reordering elements or removing elements. All work is ...
0
votes
1answer
26 views

How to switch java code from using local XML file to URL of an XML file

I have written web application that reads an XMl file parses it and does some work. Rather than using a local file, I'd like to use a URL of the XML file ( something like ...
0
votes
2answers
30 views

Use JDOM to remove an element by its attribute?

I have an XML file with the following structure: <contacts> <contact id="0"> <firstname /> <lastname /> <address> <street ...
0
votes
1answer
17 views

Jdom element handling

Is it possible somehow to nest an element into another if the parent has some text in it with jdom? What im looking for is something like <p> text <str>bold text</str> text ...
0
votes
1answer
42 views

Namespaces (Default) in JDOM

I am trying to produce a XML document using the newest JDOM package. I'm having trouble with the root element and the namespaces. I need to produce this root element: <ManageBuildingsRequest ...
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
64 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
3answers
82 views

How to convert Document object to Input Source?

I am having a XML document objecy created on the fly. I need to validate it against Schema. I am using xerces 2. I have set features for the parser.Now i need to parse to validate the XML. For this i ...
0
votes
1answer
49 views

How to compare document objects in java with XERCES?

I am trying to compare two Document objects and try to make operation according to result. For example I will have a Document object like, <head> <value> </value> </head> ...
0
votes
3answers
44 views

Get Stuck while parsing Document object?

I am trying to parse my Document object which is like; <message> <header> <messageType>snmp</messageType> <sendFrom>localhost</sendFrom> ...
0
votes
2answers
20 views

Error while reading text from Document in jdom?

I am here to ask you a basic question about jdom. I am trying to read a Document object but I got an error all the time. The Document that I am trying to read is, <message> <header> ...

1 2