DocumentBuilder getSchema() Method



Description

The Javax.xml.parsers.DocumentBuilder.getSchema() method gets a reference to the the Schema being used by the XML processor. If no schema is being used, null is returned.

Declaration

Following is the declaration for Javax.xml.parsers.DocumentBuilder.getSchema() method

public Schema getSchema()

Parameters

NA

Return Value

This method returns a Schema being used or null if none in use

Exception

UnsupportedOperationException − When implementation does not override this method

Example

For our examples to work, a xml file named Student.xml is needed in our CLASSPATH. The contents of this XML are the following −

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<student id="10">
   <age>12</age>
   <name>Malik</name>
</student>

The following example shows the usage of Javax.xml.parsers.DocumentBuilder.getSchema() method.

package com.tutorialspoint;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.validation.Schema;

public class DocumentBuilderDemo {

   public static void main(String[] args) {

      // create a new DocumentBuilderFactory
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();

      try {
         // use the factory to create a documentbuilder
         DocumentBuilder builder = factory.newDocumentBuilder();

         // get the Schema used by our builder
         Schema a = builder.getSchema();

         // print the schema if there is any
         System.out.println("" + a);

      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

If we compile the code and execute it, this will produce the following result −

null
javax_xml_parsers_documentbuilder.htm
Advertisements