Community
Participate
Working Groups
/* parse files */
try {
DocumentBuilder builder = factory.newDocumentBuilder();
document = builder.parse(fileName);
document = builder.parse(new File(fileName));
}
catch (SAXParseException e) {
Status status = new Status(Status.ERROR, AdminPlugin.PLUGIN_ID, 0, e.getMessage(), e);