Hi,

 

 

 

I was planning to process a XML file that is about ~7MB in size with Xpath.

When I run the java executable it takes ~100MB to run.

 

Is there anyway to limit the amount of memory needed?

 

Code looks like this:

 

        NodeIterator nl = XPathAPI.selectNodeIterator(olddocument, xpath);

 

        Node n;

        int i;

 

        i=1;

        while ((n = nl.nextNode())!= null)  { // for each node found...

           System.out.println("number: " + i);

           i= i + 1;

        }

 

 

Robert Mundkowsky
Employers Compensation Insurance Group
Sr. Applications Developer
Employers Insurance
3070 Bristol Street, Ste. 600
Costa Mesa, CA 92626-3070
[EMAIL PROTECTED]
Tel: 714-429-2665
Fax: 714-556-0652

 

 

**********************************************************************

Notice: This e-mail, including any attachment(s), is confidential and intended solely for the above named individual(s). It constitutes non-public information and may contain information subject to certain legal privileges. If you are the intended recipient, your use of any confidential or personal information may be restricted by federal and state privacy laws. Any use of this communication by others is strictly prohibited and may be unlawful. If you have received this e-mail in error, please notify me immediately by replying to sender and delete this e-mail and any attachment(s). Thank you.

**********************************************************************

Reply via email to