Java Mailing List Archive

http://www.junlu.com/

Google
Google
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
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Subject: Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Subject: Running a Simple JMS Example
Tomcat and webapplication specific java library path
Mapping in workers2 properties
org apache jasper JasperException
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action
   MESSAGE
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
Value attribute of <html:checkbox
url string for connecting jboss to oracle
javax servlet ServletException: BeanUtils populate
5 0 18: Windows XP Pro vs Windows 2000
HTTP Status 404 The requested resource is not available
 
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
Reply:     1     2     3     4  

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)

©2008 junlu.com - Jax Systems, LLC, U.S.A.