Tagged Questions
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
159 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
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 ...
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
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
2answers
352 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 ...
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
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
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
101 views
JDOM-XPath: Can't get the second value in a collection
I'm pretty confused about this one. Given the following xml:
<sch:eventList>
<sch:event>
<sch:eventName>Event One</sch:eventName>
...
0
votes
2answers
76 views
How to reuse XPath instances with JDOM (thread safety)?
There is an example code here:
x = XPath.newInstance("//collection/dvd[@id='B']");
Element e = (Element)x.selectSingleNode(doc);
listElement(e, "");
The question in me is how can I make it fast if ...
0
votes
1answer
223 views
Xpath returns empty element object
I have an xml document as a string without any namespace and I want to parse it using Java, JDOM and XPath, and create a object tree. Since XPAth always requires a prefix and a namespace to query, I ...
0
votes
2answers
363 views
XPath using JDom
In my code below, I am trying to access my 'handler' XML elements using XPath, but I am having no luck - the 'elemHandler' element is always null. Can anyone share with me the obvious solution? Thanks ...
0
votes
3answers
196 views