Java XML Parse File parse(File iFile)

Here you can find the source of parse(File iFile)

Description

parse

License

Open Source License

Declaration

public static Document parse(File iFile) throws SAXException, IOException, 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 java.io.*;
import javax.xml.parsers.*;

import org.w3c.dom.*;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

public class Main {
    public static Document parse(InputSource iSource)
            throws SAXException, IOException, ParserConfigurationException {
        DocumentBuilder builder = javax.xml.parsers.DocumentBuilderFactory.newInstance().newDocumentBuilder();
        return builder.parse(iSource);
    }//from  w  w  w. j  a  v a  2s .com

    public static Document parse(File iFile) throws SAXException, IOException, ParserConfigurationException {
        DocumentBuilder builder = javax.xml.parsers.DocumentBuilderFactory.newInstance().newDocumentBuilder();
        return builder.parse(iFile);
    }
}

Related

  1. parse(File file)
  2. parse(File file)
  3. parse(File file)
  4. parse(File file)
  5. parse(File file)
  6. parse(File input)
  7. parse(File xml, ErrorHandler errorHandler)
  8. parse(String filename)
  9. parse(String fileName)