当前位置: 首页>>代码示例>>Java>>正文


Java XMLParserConfiguration类代码示例

本文整理汇总了Java中com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration的典型用法代码示例。如果您正苦于以下问题:Java XMLParserConfiguration类的具体用法?Java XMLParserConfiguration怎么用?Java XMLParserConfiguration使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


XMLParserConfiguration类属于com.sun.org.apache.xerces.internal.xni.parser包,在下文中一共展示了XMLParserConfiguration类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: AbstractDOMParser

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
/** Default constructor. */
protected AbstractDOMParser (XMLParserConfiguration config) {

    super (config);


    // add recognized features
    fConfiguration.addRecognizedFeatures (RECOGNIZED_FEATURES);

    // set default values
    fConfiguration.setFeature (CREATE_ENTITY_REF_NODES, true);
    fConfiguration.setFeature (INCLUDE_IGNORABLE_WHITESPACE, true);
    fConfiguration.setFeature (DEFER_NODE_EXPANSION, true);
    fConfiguration.setFeature (INCLUDE_COMMENTS_FEATURE, true);
    fConfiguration.setFeature (CREATE_CDATA_NODES_FEATURE, true);

    // add recognized properties
    fConfiguration.addRecognizedProperties (RECOGNIZED_PROPERTIES);

    // set default values
    fConfiguration.setProperty (DOCUMENT_CLASS_NAME,
    DEFAULT_DOCUMENT_CLASS_NAME);

}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:25,代码来源:AbstractDOMParser.java

示例2: DOMParserImpl

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
/**
 * Constructs a DOM Builder using the standard parser configuration.
 */
public DOMParserImpl (XMLParserConfiguration config, String schemaType) {
    this (config);
    if (schemaType != null) {
        if (schemaType.equals (Constants.NS_DTD)) {
            //Schema validation is false by default and hence there is no
            //need to set it to false here.  Also, schema validation is
            //not a recognized feature for DTDConfiguration's and so
            //setting this feature here would result in a Configuration
            //Exception.
            fConfiguration.setProperty (
            Constants.JAXP_PROPERTY_PREFIX + Constants.SCHEMA_LANGUAGE,
            Constants.NS_DTD);
            fSchemaType = Constants.NS_DTD;
        }
        else if (schemaType.equals (Constants.NS_XMLSCHEMA)) {
            // XML Schem validation
            fConfiguration.setProperty (
            Constants.JAXP_PROPERTY_PREFIX + Constants.SCHEMA_LANGUAGE,
            Constants.NS_XMLSCHEMA);
        }
    }

}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:27,代码来源:DOMParserImpl.java

示例3: copyFeatures1

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
private void copyFeatures1(
    Enumeration features,
    String featurePrefix,
    XMLComponentManager from,
    XMLParserConfiguration to) {
    while (features.hasMoreElements()) {
        String featureId = featurePrefix + (String)features.nextElement();
        boolean value = from.getFeature(featureId);

        try {
            to.setFeature(featureId, value);
        }
        catch (XMLConfigurationException e) {
            // componentManager doesn't support this feature,
            // so we won't worry about it
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:XIncludeHandler.java

示例4: AbstractSAXParser

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
/** Default constructor. */
protected AbstractSAXParser(XMLParserConfiguration config) {
    super(config);

    config.addRecognizedFeatures(RECOGNIZED_FEATURES);
    config.addRecognizedProperties(RECOGNIZED_PROPERTIES);

    try {
        config.setFeature(ALLOW_UE_AND_NOTATION_EVENTS, false);
    }
    catch (XMLConfigurationException e) {
        // it wasn't a recognized feature, so we don't worry about it
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:AbstractSAXParser.java

示例5: AbstractXMLDocumentParser

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
/**
 * Constructs a document parser using the default symbol table
 * and grammar pool.
 */
protected AbstractXMLDocumentParser(XMLParserConfiguration config) {
    super(config);

    // set handlers
    config.setDocumentHandler(this);
    config.setDTDHandler(this);
    config.setDTDContentModelHandler(this);

}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:AbstractXMLDocumentParser.java

示例6: initialize

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
private XMLParserConfiguration initialize() {
    XML11Configuration config = new XML11Configuration();
    if (fComponentManager.getFeature(XMLConstants.FEATURE_SECURE_PROCESSING)) {
        config.setProperty(SECURITY_MANAGER, new XMLSecurityManager());
    }
    config.setProperty(ENTITY_RESOLVER, fComponentManager.getProperty(ENTITY_RESOLVER));
    config.setProperty(ERROR_HANDLER, fComponentManager.getProperty(ERROR_HANDLER));
    XMLErrorReporter errorReporter = (XMLErrorReporter) fComponentManager.getProperty(ERROR_REPORTER);
    config.setProperty(ERROR_REPORTER, errorReporter);
    // add message formatters
    if (errorReporter.getMessageFormatter(XMLMessageFormatter.XML_DOMAIN) == null) {
        XMLMessageFormatter xmft = new XMLMessageFormatter();
        errorReporter.putMessageFormatter(XMLMessageFormatter.XML_DOMAIN, xmft);
        errorReporter.putMessageFormatter(XMLMessageFormatter.XMLNS_DOMAIN, xmft);
    }
    config.setProperty(SYMBOL_TABLE, fComponentManager.getProperty(SYMBOL_TABLE));
    config.setProperty(VALIDATION_MANAGER, fComponentManager.getProperty(VALIDATION_MANAGER));
    config.setDocumentHandler(fSchemaValidator);
    config.setDTDHandler(null);
    config.setDTDContentModelHandler(null);
    config.setProperty(Constants.XML_SECURITY_PROPERTY_MANAGER,
            fComponentManager.getProperty(Constants.XML_SECURITY_PROPERTY_MANAGER));
    config.setProperty(Constants.SECURITY_MANAGER,
            fComponentManager.getProperty(Constants.SECURITY_MANAGER));
    fConfiguration = new SoftReference(config);
    return config;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:28,代码来源:StreamValidatorHelper.java

示例7: SchemaDOMParser

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
/** Default constructor. */
public SchemaDOMParser(XMLParserConfiguration config) {
    this.config = config;
    config.setDocumentHandler(this);
    config.setDTDHandler(this);
    config.setDTDContentModelHandler(this);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:SchemaDOMParser.java

示例8: copyFeatures

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
protected void copyFeatures(
    XMLComponentManager from,
    XMLParserConfiguration to) {
    Enumeration features = Constants.getXercesFeatures();
    copyFeatures1(features, Constants.XERCES_FEATURE_PREFIX, from, to);
    features = Constants.getSAXFeatures();
    copyFeatures1(features, Constants.SAX_FEATURE_PREFIX, from, to);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:XIncludeHandler.java

示例9: initialize

import com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration; //导入依赖的package包/类
private XMLParserConfiguration initialize() {
    XML11Configuration config = new XML11Configuration();
    if (fComponentManager.getFeature(XMLConstants.FEATURE_SECURE_PROCESSING)) {
        config.setProperty(SECURITY_MANAGER, new XMLSecurityManager());
    }
    config.setProperty(ENTITY_RESOLVER, fComponentManager.getProperty(ENTITY_RESOLVER));
    config.setProperty(ERROR_HANDLER, fComponentManager.getProperty(ERROR_HANDLER));
    XMLErrorReporter errorReporter = (XMLErrorReporter) fComponentManager.getProperty(ERROR_REPORTER);
    config.setProperty(ERROR_REPORTER, errorReporter);
    // add message formatters
    if (errorReporter.getMessageFormatter(XMLMessageFormatter.XML_DOMAIN) == null) {
        XMLMessageFormatter xmft = new XMLMessageFormatter();
        errorReporter.putMessageFormatter(XMLMessageFormatter.XML_DOMAIN, xmft);
        errorReporter.putMessageFormatter(XMLMessageFormatter.XMLNS_DOMAIN, xmft);
    }
    config.setProperty(SYMBOL_TABLE, fComponentManager.getProperty(SYMBOL_TABLE));
    config.setProperty(VALIDATION_MANAGER, fComponentManager.getProperty(VALIDATION_MANAGER));
    config.setDocumentHandler(fSchemaValidator);
    config.setDTDHandler(null);
    config.setDTDContentModelHandler(null);
    config.setProperty(Constants.XML_SECURITY_PROPERTY_MANAGER,
            fComponentManager.getProperty(Constants.XML_SECURITY_PROPERTY_MANAGER));
    config.setProperty(Constants.SECURITY_MANAGER,
            fComponentManager.getProperty(Constants.SECURITY_MANAGER));

    // Passing on the CatalogFeatures settings
    JdkXmlUtils.catalogFeaturesConfig2Config(fComponentManager, config);

    config.setProperty(JdkXmlUtils.CDATA_CHUNK_SIZE,
            fComponentManager.getProperty(JdkXmlUtils.CDATA_CHUNK_SIZE));

    fConfiguration = new SoftReference<>(config);
    return config;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:35,代码来源:StreamValidatorHelper.java


注:本文中的com.sun.org.apache.xerces.internal.xni.parser.XMLParserConfiguration类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。