Author
xpath library
avaya sahu
Greenhorn
Joined: Oct 16, 2001
Posts: 14
Hi, I am new to XPath . Can any one let me know from where I can download xpath library(free and meets w3c specification). I am using jdk 1.4. Is there any such library form w3c. Please let me know. It is very urgent. Thanks in advance !!!
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35247
posted Sep 06, 2005 13:06:00
0
First of all, Patience Is A Virtue . As to your question, Apache Xerces is one such a library.
Android apps – ImageJ plugins – Java web charts
avaya sahu
Greenhorn
Joined: Oct 16, 2001
Posts: 14
Originally posted by Ulf Dittmer:
First of all,
Patience Is A Virtue .
As to your question, Apache Xerces is one such a library.
I have very specific requirement, so wnatted to know whether it can handle it or not. I have an element node with me and user will give xpath relative to the element to retrive to node(s) pointed by the xpath. It should support attribute and regular expression. pls. let me know what API(class) should be used for this?
David Patterson
Ranch Hand
Joined: Jul 01, 2002
Posts: 65
Try org.apache.xpath.CachedXPathAPI or org.apache.xpath.XPathAPI. Both will allow you to specify an XPath string and it will return what you have asked for. This may or may not be what you wanted. XPath supports XPath strings, not Regular Expressions. There is a learning curve associated with XPath . Dave Patterson
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35247
posted Sep 09, 2005 01:18:00
0
There is a learning curve associated with
XPath .
@David: That is a great characterization; I shall have to remember it.
subject: xpath library