cfghandler.java

来自「cwbbs 云网论坛源码」· Java 代码 · 共 46 行

JAVA
46
字号
package cn.js.fan.util;import org.xml.sax.Attributes;import org.xml.sax.helpers.DefaultHandler;import org.xml.sax.SAXException;import java.util.Properties;public class CFGHandler    extends DefaultHandler {    private Properties props;  private String currentSet;  private String currentName;  private StringBuffer currentValue = new StringBuffer();    public CFGHandler() {    this.props = new Properties();  }  public Properties getProps() {    return this.props;  }    public void startElement(String uri, String localName, String qName,                           Attributes attributes) throws SAXException {    currentValue.delete(0, currentValue.length());    this.currentName = qName;  }    public void characters(char[] ch, int start, int length) throws SAXException {    currentValue.append(ch, start, length);  }    public void endElement(String uri, String localName, String qName) throws      SAXException {    props.put(qName.toLowerCase(), currentValue.toString().trim());  }}

⌨️ 快捷键说明

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