Tagged Questions
dom4j is an open source library for working with XML, XPath and XSLT on the Java platform using the Java Collections Framework and with full support for DOM, SAX and JAXP.
28
votes
9answers
13k views
What Java XML library do you recommend (to replace dom4j)?
I'm looking for something like dom4j, but without dom4j's warts, such as bad or missing documentation and seemingly stalled development status.
Background: I've been using and advocating dom4j, but ...
6
votes
1answer
491 views
Problem with conversion of org.dom4j.Document to org.w3c.dom.Document and XML Signature
I have some classes that already use DOM4J to read XML files and provide
getter methods to the data. Now, I need to add the possibility of checking XML digital
signatures.
Using org.w3c.dom and ...
5
votes
2answers
261 views
Implicit conversion between Scala collection types
I would like to implicitly convert between the Scala XML Elem object and another representation of an XML element, in my case dom4j Element. I wrote the following implicit conversions:
implicit def ...
4
votes
3answers
3k views
Clean namespace handling with dom4j
We are using dom4j 1.6.1, to parse XML comming from somewhere. Sometime, the balise have mention of the namespace ( eg : ) and sometime not ( ). And it's make call of Element.selectSingleNode(String ...
3
votes
2answers
76 views
java.lang.NoClassDefFoundError: org/dom4j/Document
I have a class called XMLtoXML.java and this is one of it's methods...
import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.Node;
import org.dom4j.io.OutputFormat;
import ...
3
votes
2answers
1k views
convert dom4j docment to W3c document
i'm need to convert an xml build with dom4j to w3c document and don't have any idea about how do it...
3
votes
1answer
104 views
How does dom4j library implements Flyweight pattern?
I can see in dom4j library a number of classes with Flyweight prefix: FlyweightAttribute, FlyweightComment, FlyweightText etc. Here is what java doc is saying in the case of FlyweightText:
...
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 ...
3
votes
4answers
4k views
Using Xpath in Dom4j
I get the following exception when trying to access any nodes of a parsed xml document on dom4j:
Exception in thread "main" java.lang.NoClassDefFoundError: org/jaxen/JaxenException
at ...
3
votes
1answer
2k views
How efficient is XPath compared to using DOM in Dom4J?
For example consider the following xml
<root>
<childNode attribute1="value1">
<grandChildNode attrib1="val1" attrib2="val2">some content1
</grandChildNode>
...
2
votes
2answers
212 views
expand Jtree at last modified area?
I am using dom4j to create a DocumentTreeModel from a dom4j document.
I display this DocumentTreeModel inside JScrollPane.
I have a button that adds a new node to the dom4j document, and recreates ...
2
votes
0answers
610 views
Using dom4j DOMDocument to feed validator.validate(DOMSource) fails in java 1.6 (xsi:noNamespaceSchemaLocation is not allowed), works in 1.5
Using dom4j DOMDocument to feed validator.validate(DOMSource) fails in java 1.6 (with xsi:noNamespaceSchemaLocation is not allowed to appear in root element), works in 1.5
I'm finding the following ...
2
votes
2answers
2k views
Import Libraries in Eclipse?
I just recently downloaded the dom4j library, but for the life of me I have no idea how to access it. I dropped it in the plug-ins folder and rebooted Eclipse, without success. For some reason finding ...
2
votes
1answer
161 views
Specify XML path in dom4j
I want to parse a large xml file using dom4j. I'm using the dom4j's feature that you can register event handlers for path expressions for ignoring the elements I don't care about. The feature is ...
2
votes
1answer
2k views
XPath contains(…)
I have a small problem with Xpath contains with dom4j ...
Lets say my XML is
<Home>
<Addr>
<Street>ABC</Street>
<Number>5</Number>
...
2
votes
2answers
359 views
Dom4j rule does not match all expected nodes
I'm using dom4j's rules api to fire an action if the predefined pattern //authorize matches an element in the following xml snippet.
<authorize role_required="admin">
<node ...
2
votes
1answer
642 views
Is adding elements between elements with Jython and dom4j possible?
Just playing with dom4j, excellent. I was a PHP developer for a year and half, just got a new job and started playing around with Jython now I have spare time, its a great language. Was thinking ...
1
vote
1answer
61 views
DOM4J Document: read an ISO-8859-1 xml
I need to read an xml file that is encoded in ISO-8859-1.
I'm using:
Document document = reader.read(new File(sourceFile));
document.setXMLEncoding("ISO-8859-1");
I'm getting a "cannot find ...
1
vote
2answers
48 views
Post-Process-Step for XSL
I'm currently working on a project which uses XSL-Transformations to generate HTML from XML.
On the input fields there are some attributes I have to set.
Sample:
<input name="/my/xpath/to/node"
...
1
vote
1answer
128 views
Dom4J preserve whitespace when writing file
I'm working on a program that is using Dom4J to write xml files. The database schema I am writing to has a handy xml validation and import schema. Dom4J is working great, but, I can't seem to figure ...
1
vote
1answer
43 views
dom4j: How to resolve this XPath Error?
I am reading an XML using dom4j by using XPath techniques for selecting desired nodes. Consider that my XML looks like this:
<Emp_Dir>
<Emp_Classification type ="Permanent" >
...
1
vote
1answer
71 views
adding new node at specified place using dom4j in xml
my code to insert new cred-pair at desried machine level.
Document insertNewNode(String loginId,String pass,String machine_name)
{
List<?> list1 = document.selectNodes("//machine/@name" );
...
1
vote
1answer
309 views
dom4j XML declaration in document
I need to remove XML declaration from dom4j document type
I am creating document by
doc = (Document) DocumentHelper.parseText(someXMLstringWithoutXMLDeclaration);
String parsed to Document doc by ...
1
vote
1answer
304 views
find by org.w3c.dom.Element object as parameter on org.dom4j.Document (convert org.w3c.dom.Element to org.dom4j.Element)
I have a org.w3c.dom.Document parsed by org.dom4j.io.DOMReader.
I want to search the dom4j DOM document via org.w3c.dom.Element.
say, I have a org.w3c.dom.Element that I need to locate on the dom4j ...
1
vote
1answer
372 views
Android 1.5 and dom4j - attributes names parsed incorrectly
I am working on application for Android 1.5 . Currently, I need to parse XML file. As Android does not support XPath natively in API Level 3, I decided to use dom4j and jaxen libraries to read a file.
...
1
vote
1answer
38 views
I use dom4j1.6 in java(xml), but I can't addattribute null value, What can I do?
In my source-----
Element element1 = element.addElement("List");
element1.addAttribute("Number", (String)Map.get("NUMBER"));
element1.addAttribute("Indicator", null);
I want a result like ...
1
vote
2answers
585 views
Can I query DOM Document with xpath expression from multiple threads safely?
I plan to use dom4j DOM Document as a static cache in an application where multiples threads can query the document.
Taking into the account that the document itself will never change, is it safe to ...
1
vote
3answers
713 views
SAXReader not re-ecape characters
I'm reading a XML file with dom4j. The file looks like this:
...
<Field> hello, world...</Field>
...
I read the file with SAXReader into a Document. When I use ...
1
vote
6answers
2k views
Reading a single XML document from a stream using dom4j
I'm trying to read a single XML document from stream at a time using dom4j, process it, then proceed to the next document on the stream. Unfortunately, dom4j's SAXReader (using JAXP under the covers) ...
0
votes
1answer
71 views
java.lang.StackOverflowError in dom parser
Following is the method that will be accessed by many threads in my application.
public static String getXMLAsString(org.dom4j.Document dom4jDocument)
{
String strXML="";
try {
...
0
votes
1answer
19 views
Extracting child nodes data from given node
I am using DOM4j for parsing xml file.
For this example:
<request method="POST" url="/devices/test/planner" body="*">
<response statusCode="200">
<header>
...
0
votes
2answers
79 views
how to use dom4j SAXReader offline?
I would like to work with SAXReader offline, the problem is that SAXReader is verifying the xml accoerding to the DTD. I don't want to change the DTD or anything else in the XML. From searching on ...
0
votes
1answer
22 views
SQL Server 2008: Retrieve XML column value from the ResultSet and store it in a Document
I want to retrieve the value of a column with xml datatype.I have researched about the query method for retrieval but not quite sure whether I can use it to retrieve untyped xml values.
Also clueless ...
0
votes
3answers
62 views
How to get node content of XML with Dom4j in java
I have a XML file like:
<description>
<text>blahblah</text>
<code>code</code>
<text>blah</text>
</description>
I've navigated to the node ...
0
votes
3answers
71 views
How to test for CDATA value of an element using Dom4j?
Does anybody have an idea how to find out whether an element contains <![CDATA[ text ]]> or not ? I search through the dom4j API and Jaxen and I can't find how to do that... If I retrieve the ...
0
votes
1answer
41 views
How to properly handle null values when creating an xml document with dom4j
I'm using dom4j to create XML documents from entities.
I'm doing something like:
Entity entity = getSomeEntity();
element.addElement("foo").addText(entity.getSomeField());
...
0
votes
0answers
40 views
Map XML to POJO using hibernate mapping
Could someone shed me some light whether this is currently doable or not?
I read these two articles and managed to save XML to database by defining the mapping in hbm.xml.
...
0
votes
1answer
33 views
Element offsets and covered text in dom4j
We need to process an XML file which contains PCDATA elements like the following:
<corpus id="c01">
<text id="t01>
<sentence id="s01">Mary <instance ...
0
votes
2answers
146 views
Dom4j xmlns attribute
I want to add xmlns attribute to the root node only, however when i add a namespace to the root element, all subsequent child elements also get the same xmlns attribute. How do I add xmlns attribute ...
0
votes
1answer
80 views
dom4J: How to get the value of Elements of a Node?
I am reading an XML using dom4j by using XPath techniques for selecting desired nodes. Consider that my XML looks like this:
<Employees>
<Emp id=1>
...
0
votes
1answer
158 views
dom4J: how to get attributes, elements and applying XPath on Node?
I am reading an XML using dom4j by using XPath techniques for selecting desired nodes. Consider that my XML looks like this:
<Emp_Dir>
<Emp_Classification type ="Permanent" >
...
0
votes
2answers
38 views
Dom4j: how to resolve this error
I am developing a small desktop application in Java. I came across a point where i need to read data from XML file, for this i am using Dom4j library. While coding i am facing the following error ...
0
votes
1answer
143 views
How can I insert a node before an other using dom4j?
I have a org.dom4j.Document instance that is a DefaultDocument implementation to be specific. I would like to insert a new node just before an other one. I do not really understand the dom4j api, I am ...
0
votes
1answer
128 views
Which XML parser API does dom4j SaxReader use? SAX or DOM?
In dom4j website it says "SAXReader creates a DOM4J tree from SAX parsing events.". What does this mean? Is SAXReader a DOM parser that creates a tree of the full XML file, or does it process the XML ...
0
votes
1answer
111 views
Converting XML Document to a DOM4J doc to extract value of specific nodes
I have an XML document with various nodes. I need to put a set of nodes into a string.
Example:
<root>
<....many tags>
<TIFFs>
<TIFF>.......blah blah...</TIFF>
...
0
votes
1answer
72 views
how to iterate through Xml using dom4j
my xml file:
<credentials>
<machine name="xyz">
<cred-pairs>
<cred-pair>
<login>asad</login>
<password>12345</password>
...
0
votes
0answers
49 views
Xml output problem using dom4j library
original xml:
<credentials>
<machine name="xyz">
<cred-pair>
<login>asad</login>
<password>12345</password>
</cred-pair>
</machine>
<machine ...
0
votes
1answer
118 views
reading, updating problem with dom4j library
this is my code to write xml file:
public void generateDocument(){
Document document = DocumentHelper.createDocument();
Element catalogElement = document.addElement("catalog");
...
0
votes
1answer
76 views
got null from xpath expression when using xsd schema with Dom4j
I'm trying to use dom4j with my application, and I approached a problem with parsing following xml file:
<menu xmlns="http://example.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
3answers
91 views
using Hibernate and dom4j, is it possible to transform a POJO into its XML representation (and vice versa) without DB?
Is it possible to transform a POJO instance into its XML representation without storing it to DB and load it back again in DOM4J mode (and from XML to POJO)?