xml file presentation
Hi,
Im using the following code to create xml file:
try {
Source source = new DOMSource(this.XMLDocument);
File file = new File(filename);
Result result = new StreamResult(file);
Transformer xformer = TransformerFactory.newInstance().newTransformer();
xformer.transform(source, result);
} catch (TransformerConfigurationException e) {
} catch (TransformerException e) {
}
My problem is after i created the file, i open it in eclipse and i see all text in Notepad as a long string.
My question: How can i view the file i created in hierarchy mode?

