/programd/ProgramD/new_src/src/org/aitools/util/xml/DOM.java

http://ainotebook.googlecode.com/ · Java · 106 lines · 54 code · 9 blank · 43 comment · 0 complexity · 778459223d181e79c7f6efdc1a555eca MD5 · raw file

  1. /*
  2. * aitools utilities
  3. * Copyright (C) 2006 Noel Bush
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. package org.aitools.util.xml;
  19. import java.io.IOException;
  20. import java.net.URL;
  21. import javax.xml.parsers.DocumentBuilder;
  22. import javax.xml.parsers.DocumentBuilderFactory;
  23. import javax.xml.parsers.ParserConfigurationException;
  24. import org.aitools.util.runtime.DeveloperError;
  25. import org.apache.log4j.Logger;
  26. import org.w3c.dom.Document;
  27. import org.xml.sax.SAXException;
  28. import org.xmlresolver.Catalog;
  29. import org.xmlresolver.Resolver;
  30. import org.xmlresolver.ResourceResolver;
  31. /**
  32. * Utilities specific to the standard W3C DOM.
  33. *
  34. * @author <a href="mailto:noel@aitools.org">Noel Bush</a>
  35. */
  36. public class DOM
  37. {
  38. static
  39. {
  40. System.setProperty("javax.xml.parsers.DocumentBuilderFactory", "org.xmlresolver.sunjaxp.jaxp.DocumentBuilderFactoryImpl");
  41. }
  42. /**
  43. * Parses the document and returns a DOM Document object.
  44. * XInclusions are performed first, then validation.
  45. *
  46. * @param location
  47. * @param logger
  48. * @return a DOM Document object
  49. */
  50. public static Document getDocument(URL location, Logger logger)
  51. {
  52. ResourceResolver resolver = new ResourceResolver(new Catalog());
  53. Resolver entityResolver = new Resolver(resolver);
  54. resolver.setEntityResolver(entityResolver);
  55. DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
  56. factory.setNamespaceAware(true);
  57. factory.setXIncludeAware(true);
  58. //factory.setValidating(true);
  59. DocumentBuilder builder = null;
  60. try
  61. {
  62. builder = factory.newDocumentBuilder();
  63. builder.setErrorHandler(new SimpleSAXErrorHandler(logger));
  64. builder.setEntityResolver(entityResolver);
  65. }
  66. catch (ParserConfigurationException e)
  67. {
  68. throw new DeveloperError("Exception while creating DOM DocumentBuilder.", e);
  69. }
  70. Document document = null;
  71. try
  72. {
  73. document = builder.parse(location.toExternalForm());
  74. }
  75. catch (SAXException e)
  76. {
  77. // TODO Auto-generated catch block
  78. e.printStackTrace();
  79. }
  80. catch (IOException e)
  81. {
  82. // TODO Auto-generated catch block
  83. e.printStackTrace();
  84. }
  85. return document;
  86. /*LSParser parser = ((DOMImplementationLS) builder.getDOMImplementation().getFeature("LS","3.0")).createLSParser(DOMImplementationLS.MODE_SYNCHRONOUS, XMLConstants.W3C_XML_SCHEMA_NS_URI);
  87. DOMConfiguration config = parser.getDomConfig();
  88. config.setParameter("validate", Boolean.TRUE);
  89. config.setParameter("schema-type", XMLConstants.W3C_XML_SCHEMA_NS_URI);
  90. config.setParameter("error-handler", new SimpleDOMErrorHandler(logger));
  91. config.setParameter("resource-resolver", entityResolver);
  92. return parser.parseURI(location.toExternalForm());*/
  93. }
  94. }