📄 dtdentityresolver.java
字号:
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.workflow.loader;import org.xml.sax.EntityResolver;import org.xml.sax.InputSource;import org.xml.sax.SAXException;import java.io.IOException;import java.io.InputStream;import java.net.MalformedURLException;import java.net.URL;/** * @author Hani Suleiman (hani@formicary.net) * Date: Sep 14, 2003 * Time: 4:25:40 PM */public class DTDEntityResolver implements EntityResolver { //~ Methods //////////////////////////////////////////////////////////////// public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException { if (systemId == null) { return null; } try { URL url = new URL(systemId); String file = url.getFile(); if ((file != null) && (file.indexOf('/') > -1)) { file = file.substring(file.lastIndexOf('/') + 1); } if ("www.opensymphony.com".equals(url.getHost()) && systemId.endsWith(".dtd")) { InputStream is = getClass().getResourceAsStream("/META-INF/" + file); if (is == null) { is = getClass().getResourceAsStream('/' + file); } if (is != null) { return new InputSource(is); } } } //modified by mbussetti - 15 nov 2004 //if the systemId isn't an URL, it is searched in the usual classpath catch (MalformedURLException e) { InputStream is = getClass().getResourceAsStream("/META-INF/" + systemId); if (is == null) { is = getClass().getResourceAsStream('/' + systemId); } if (is != null) { return new InputSource(is); } } return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -