Refresh Your Java - Before Java Interview
We are Agile, believe in less Documentation - Only Quick notes (Java Interview Questions) of Java/J2ee Read more....
The DOM specification defines a tree-based approach to navigating
an XML document. In other
words, a DOM parser
processes XML data and creates an object-oriented hierarchical
representation
of the document that you can navigate at
run-time.
public class Test {
public static void main(String[] args) {
try {
DocumentBuilderFactory dbf =
DocumentBuilderFactory.newInstance();
DocumentBuilder db =
dbf.newDocumentBuilder();
InputSource is = new InputSource(new StringReader(in));
return
db.parse(is);
} catch (Exception e) {
}
}
}
This Portal is intended to put all Java/J2ee related topics at one single place for quick referance, not only Technical , but also the Project Management Related thing such as Development Process methodoogies build process, unit testing etc.,
This Portal has More than 500 Java Interview Questions (also could be Considered as Quick Notes) very neatly separated topic by topic with simple diagrams which makes you easily understandable. Importantly these are from our Realtime expericance.