Java XML SAX Parser readSchemaFromFile(File schemaFile)

Here you can find the source of readSchemaFromFile(File schemaFile)

Description

read Schema From File

License

Open Source License

Declaration

private static Schema readSchemaFromFile(File schemaFile) throws SAXException 

Method Source Code


//package com.java2s;
/*/*from   w w w  . ja  v  a  2s . c  o m*/
Copyright (C) 2009-2013 Bengt Martensson.
    
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
    
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
    
You should have received a copy of the GNU General Public License along with
this program. If not, see http://www.gnu.org/licenses/.
*/

import java.io.File;

import javax.xml.XMLConstants;

import javax.xml.validation.Schema;
import javax.xml.validation.SchemaFactory;

import org.xml.sax.SAXException;

public class Main {
    private static Schema readSchemaFromFile(File schemaFile) throws SAXException {
        return (SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI)).newSchema(schemaFile);
    }
}

Related

  1. isXML(final byte[] data)
  2. load(InputStream is, DefaultHandler handler)
  3. newInstance()
  4. newXMLReader()
  5. read(InputStream is, DefaultHandler h)
  6. releaseSAXParser(SAXParser parser)
  7. urlToSchema(final URL url)
  8. xmlReader()