emptyentityresolver.java

来自「反向的AJAX。最大的特性是我们成为反向的Ajax。DWR1.x允许你用java」· Java 代码 · 共 40 行

JAVA
40
字号
package org.directwebremoting.util;import java.io.IOException;import java.io.StringReader;import org.directwebremoting.impl.DefaultPageNormalizer;import org.xml.sax.EntityResolver;import org.xml.sax.InputSource;import org.xml.sax.SAXException;/** * An EntityResolver for use when you don't want to do any entity resolving. * <p>I think this is technically a violation of all sorts of things because the * DTD affects how a document is parsed, and this just dumps all DTDs. However * when you are not interested in validity, you just want to get informaion when * you know that the DTD won't affect the documnent, this could be useful. * @author Joe Walker [joe at getahead dot ltd dot uk] */public class EmptyEntityResolver implements EntityResolver{    /* (non-Javadoc)     * @see org.xml.sax.EntityResolver#resolveEntity(java.lang.String, java.lang.String)     */    public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException    {        log.debug("resolveEntity(publicId=" + publicId + ", systemId=" + systemId + ") returning null");        InputSource is = new InputSource(new StringReader(""));        is.setPublicId(publicId);        is.setSystemId(systemId);        return is;    }    /**     * The log stream     */    private static final Logger log = Logger.getLogger(DefaultPageNormalizer.class);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?