SAXBuilder builder = new SAXBuilder();
Document
doc = builder.build(billFile);
Element root = doc.getRootElement();
I am trying to parse an xml file using JDOM. I am using above lines to create the document from billFile which is a File object. At this point,
doc is in memory. Does it means it holds entire document in memory or it only holds some information, pulls it as and when required.
please clarify