?? xmlconfigparser.java
字號:
package com.ascenttech.ebookstore.util;
import org.xml.sax.Attributes;
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.SAXException;
import java.util.Properties;
public class XMLConfigParser extends DefaultHandler
{
private Properties props;
private StringBuffer currentValue =new StringBuffer();
public XMLConfigParser()
{
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());
}
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -