wmlparser.java

来自「用Java/C#开发手机程序及移动应用光盘代码。J2ME核心类及MIDlet类;」· Java 代码 · 共 51 行

JAVA
51
字号
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 + =
减小字号Ctrl + -
显示快捷键?