Java XML SAX Parser newInstance()

Here you can find the source of newInstance()

Description

new Instance

License

Apache License

Declaration

public static SAXParserFactory newInstance() 

Method Source Code

//package com.java2s;
/*//from  w ww  .j  ava2s .  c  o m
 * Copyright 2015-2016 the original author or authors.
 *
 * 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.SAXParserFactory;

public class Main {
    public static SAXParserFactory newInstance() {
        return SAXParserFactory.newInstance();
    }
}

Related

  1. getXIncludeXMLReader()
  2. getXmlReader()
  3. isWellFormedXml(final String string)
  4. isXML(final byte[] data)
  5. load(InputStream is, DefaultHandler handler)
  6. newXMLReader()
  7. read(InputStream is, DefaultHandler h)
  8. readSchemaFromFile(File schemaFile)
  9. releaseSAXParser(SAXParser parser)