⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 characterreference.java

📁 html解析包 可以很方便的解析html 纯java 实现
💻 JAVA
字号:
/* * CharacterReference.java * * Created on February 5, 2004, 9:40 PM */package org.htmlparser.util;import java.io.Serializable;import org.htmlparser.util.sort.Ordered;/** * Structure to hold a character and it's equivalent entity reference kernel. * For the character reference &amp;copy; the character would be '&copy;' and * the kernel would be "copy", for example.<p> * Character references are described at <a href="Character references">http://www.w3.org/TR/REC-html40/charset.html#entities</a> * Supports the Ordered interface so it's easy to create a list sorted by * kernel, to perform binary searches on.<p> */public class CharacterReference    implements        Serializable,        Cloneable,        Ordered{    /**     * The character value as an integer.     */    protected int mCharacter;    /**     * This entity reference kernel.     * The text between the ampersand and the semicolon.     */    protected String mKernel;    /**     * Construct a <code>CharacterReference</code> with the character and kernel given.     * @param kernel The kernel in the equivalent character entity reference.     * @param character The character needing encoding.     */    public CharacterReference (String kernel, int character)    {        mKernel = kernel;        mCharacter = character;        if (null == mKernel)            mKernel = "";    }    /**     * Get this CharacterReference's kernel.     * @return The kernel in the equivalent character entity reference.     */    public String getKernel ()    {        return (mKernel);    }    /**     * Set this CharacterReference's kernel.     * This is used to avoid creating a new object to perform a binary search.     * @param kernel The kernel in the equivalent character entity reference.     */    void setKernel (String kernel)    {        mKernel = kernel;    }    /**     * Get the character needing translation.     * @return The character.     */    public int getCharacter ()    {        return (mCharacter);    }    /**     * Set the character.     * This is used to avoid creating a new object to perform a binary search.     * @param character The character needing translation.     */    void setCharacter (int character)    {        mCharacter = character;    }    /**     * Visualize this character reference as a string.     * @return A string with the character and kernel.     */    public String toString ()    {        String hex;        StringBuffer ret;        ret = new StringBuffer (6 + 8 + 2); // max 8 in string        hex = Integer.toHexString (getCharacter ());        ret.append ("\\u");        for (int i = hex.length (); i < 4; i++)            ret.append ("0");        ret.append (hex);        ret.append ("[");        ret.append (getKernel ());        ret.append ("]");        return (ret.toString ());    }    //    // Ordered interface    //    /**     * Compare one reference to another.     * @see org.htmlparser.util.sort.Ordered     */    public int compare (Object that)    {        CharacterReference r;                r = (CharacterReference)that;        return (getKernel ().compareTo (r.getKernel ()));    }}

⌨️ 快捷键说明

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