Java XML Document Create createDocument(String iName)

Here you can find the source of createDocument(String iName)

Description

create Document

License

Open Source License

Declaration

public static Document createDocument(String iName) throws ParserConfigurationException 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2014 Digital Technology Group, Computer Laboratory
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and limitations under the License.
 *******************************************************************************/

import javax.xml.parsers.*;

import org.w3c.dom.*;

public class Main {
    public static Document createDocument(String iName) throws ParserConfigurationException {
        DocumentBuilderFactory lFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder lBuilder = lFactory.newDocumentBuilder();
        DOMImplementation lBuilderImpl = lBuilder.getDOMImplementation();
        return lBuilderImpl.createDocument(null, iName, null);
    }//w  ww. ja v  a  2  s.  co  m
}

Related

  1. createDocument(Node sourceNode)
  2. CreateDocument(Path xml, Path xsd)
  3. createDocument(String content, String charset)
  4. createDocument(String docElt)
  5. createDocument(String docElt)
  6. createDocument(String mainType, String customType)
  7. createDocument(String namespaceURI, String qualifiedName)
  8. createDocument(String pageID)
  9. createDocument(String root, NodeList content)