posted 15 years ago
Hi,
I'm using
SAXBuilder xmlFilebuilder = new SAXBuilder();
Document xmlDocument = xmlFilebuilder.build(filePath);
to parse the XML file. But my application requires many hits to XML file.
the app I'm developing is getting one problem as "Too Many open files".
I'm using JDK 6.
I'm not closing the file explicitly as I don't have instance of file. I'm using SAXBuilder.
is Document object closes the object explicitly or not...
thanks