Tagged Questions
8
votes
2answers
345 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
108 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
160 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 ...
4
votes
1answer
166 views
Converting a List of pojo Class to a Jdom Tree?
I have a POJO class call LEVEL & his class diagramm like this:
0,1
------------|
| |
| |
\|/ |
level-<>-------
In other words this:
...
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
1answer
472 views
JDOM, XPath and Namespace Interactions
I'm having a very frustrating time extracting some elements from a JDOM document using an XPath expression. Here's a sample XML document - I'd like to remove the ItemCost elements from the document ...
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
6answers
211 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 & ...
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
1answer
33 views
Add jsp directive from server side
i wanna do something like
Document dom = new Document();
Element ele = new Element("jsp:include");
dom.setRootElement(ele);
but its throwing error i am using jdom for getting dom(org.jdom.Document, ...
2
votes
3answers
134 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
3answers
715 views
Why was this exception not caught
I have the following code
try {
xpathInstance = XPath.newInstance(xpathExpr);
list = (Text) xpathInstance.selectSingleNode(doc);
} catch (JDOMException e) {
throw new Exception(e);
}
I ...
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
1answer
68 views
How can I monitor XML parsing in Java (with JDOM)?
I'm developing an app that parses big XML files (over 200k lines, about 4-5 MB), and I would like to monitor the parsing using a progress bar.
I'm using JDOM v1.1.1 and SaxBuilder.
Anyone knows how ...
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 ...
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
37 views
JDOM Element creation
I am new to JDOM, and am having trouble creating a document. The problem is that I want
to be able to add Elements that do NOT have the "xmlns" attribute. I am using JDOM 1.1
All of the examples I ...
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
0answers
98 views
JDOM Premature end of file exceptions?
I'd like to read all CDATA associated to a child node and store them into a java ArrayList! If you could suggest a simple and quick way I'd grately appreciate it!
In this code I try to check the ...
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
138 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
2answers
83 views
How can I compare two Elements for equivalency?
I'm writing unit tests for code which uses JDOM to read and write XML. I therefore need some way to compare the JDOM Element being produced by my code with a reference Element to ensure that they are ...
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
69 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
222 views
Error XPATH KML JDOM
I am trying to read a KML with JDOM(XPATH). The error is not caught by Exceptions, only with mouse over code at line XPath.newInstance("//Kml/Document/Placemark/LookAt"); The error I am seeing is:
...
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
121 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
4answers
259 views
XML Parsing : JDOM or RegEx ? Which is faster?
A colleague of mine needs to develop an Eclipse plugin that has to parse multiple XML files to check for programming rules imposed by a client (for example, no xsl:for-each, or no namespaces declared ...
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
370 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
343 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
2answers
279 views
How can I create a self closing tag using JDOM
I could find in Jdom api any function to create self closing xml tag like the <selfClosingTag /> below.
For example, I need to create the following content:
<parentTag>
...
1
vote
1answer
266 views
JDOM 1.1: hyphen is not a valid comment character
I'm using tagsoup to clean some HTML I'm scraping from the internet, and I'm getting the following error when parsing through pages with comments:
The data "- - - - - - - - - - - - - - - - - - - - - ...
1
vote
1answer
113 views
Possible causes for “schema feature not recognized for SAX driver”
I am trying to execute a program developed elsewhere, and I see the following exception:
org.jdom.RuntimeException: http://apache.org/xml/features/validation/schema
feature not recognized for SAX ...
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
6answers
7k views
Java out of memory Exception
I am running a Java Web Application in Tomcat. The application uses Quartz framework to schedule the cron job at regular intervals. This cron job involves parsing a 4+ MB xml file, which I am doing ...
1
vote
5answers
2k views
Java I/O over an NFS mount
I have a bit of Java code that outputs an XML file to a NFS mounted filesystem. On another server that has the filesytem mounted as a Samba share, there is a process running that polls for new XML ...
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
3answers
836 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
0answers
36 views
java.lang.NoClassDefFoundError: org/jaxen/jdom/JDOMXPath
I've got a problem using jDOM 1.0 with weblogic6. Just using the method XPath.newInstance(String), we encounter the following error message:
Caused by:
java.lang.NoClassDefFoundError: ...