📄 wmlparser.java
字号:
package org.kxml.wap;import java.io.*;/** A parser for WML built on top of the WbxmlParser by setting the corresponding TagTable, AttrStartTable and AttrValueTable defined in the class Wml */public class WmlParser extends WbxmlParser { public WmlParser (InputStream in) throws IOException { super (in); setTagTable (0, Wml.tagTable); setAttrStartTable (0, Wml.attrStartTable); setAttrValueTable (0, Wml.attrValueTable); } /* public ParseEvent parseWapExtension (int id) { public void ext_i (int id, String par) throws SAXException { String dec = "$("+par+")"; dh.characters (dec.toCharArray (), 0, dec.length ()); } public void ext_t (int id, int par) throws SAXException { StringBuffer buf = new StringBuffer (); while (stringTable [par] != 0) buf.append (stringTable [par++]); ext_i (id, buf.toString ()); } public void opaque (byte [] bytes) throws SAXException { throw new SAXException ("OPAQUE invalid in WML"); } public void ext (int id) throws SAXException { throw new SAXException ("EXT_"+id+" reserved in WML"); } */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -