  | Mailing List | | Home | | Forum Home | | JBoss - Java Application Server | | Tomcat - JSP/Servlet container | | Struts - A MVC web framework | | iText - An open source PDF Java Library | | JDOM - JDOM XML Parser | | JSP - A mailing list about Java Server Pages specification and reference | | J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition | | J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog | | Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology | |
Struts & Hibernate
|
|
|
  | | | XML Parser : Select first node from DOM corresponding to xpath | XML Parser : Select first node from DOM corresponding to xpath 2004-04-27 - By Navjot Singh
Back try this. will stop after first node selection.
public NodeList getXpathNodeList(String p_node_path) { p_node_path += "/[0]"; try { return (org.apache.xpath.XPathAPI.selectNodeList(xmldoc, p_node _path)); } catch (TransformerException e) { e.printStackTrace(); return null; } }
HTH Navjot Singh
-- --Original Message-- -- From: An interest list for Sun Java Center J2EE Pattern Catalog [mailto:J2EEPATTERNS-INTEREST@(protected)]On Behalf Of Subrata SEN Sent: Tuesday, April 27, 2004 10:30 AM To: J2EEPATTERNS-INTEREST@(protected) Subject: XML Parser : Select first node from DOM corresponding to xpath
Hi All, I am new to XML Parsing. I am using xerces ( DOM ) parser and using following function to get the nodelist:
public NodeList getXpathNodeList(String p_node_path) { try { return (org.apache.xpath.XPathAPI.selectNodeList(xmldoc, p_node_path)); } catch (TransformerException e) { e.printStackTrace(); return null; }
}
selectNodeList() is taking 90% of transactions time. PackagesMethod NameCallsCumulative TimeMethod Time org.apache.xpathXPathAPI.selectNodeList11331395413954 com.iflex.fcr.infra.xmlFCRJApacheXMLParser.getXpathNodeList1129138549
Question:
1. Is there any way (API available / workaround) we can stop searching the next node after it gets first occurrence?
2. Is it logical for 1133 call XPathAPI.selectNodeList is taking 13954 ms (DOM size is less than 6kb)?
Thanks & Regards
Subrata SEN
DISCLAIMER: This message contains privileged and confidential information and is intended only for the individual named.If you are not the intended recipient you should not disseminate,distribute,store,print, copy or deliver this message.Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system.E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted,corrupted,lost,destroyed,arrive late or incomplete or contain viruses.The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. ==================================================================== Companion Site: http://www.corej2eepatterns.com J2EE BluePrints: http://java.sun.com/blueprints/corej2eepatterns List Archive: http://archives.java.sun.com/archives/j2eepatterns-interest.html Unsubscribing: email "signoff J2EEPATTERNS-INTEREST" to listserv@(protected)
==================================================================== Companion Site: http://www.corej2eepatterns.com J2EE BluePrints: http://java.sun.com/blueprints/corej2eepatterns List Archive: http://archives.java.sun.com/archives/j2eepatterns-interest.html Unsubscribing: email "signoff J2EEPATTERNS-INTEREST" to listserv@(protected)
|
|
 |