当前位置: 首页>>代码示例>>Java>>正文


Java XMLChar.isContent方法代码示例

本文整理汇总了Java中com.sun.xml.internal.fastinfoset.org.apache.xerces.util.XMLChar.isContent方法的典型用法代码示例。如果您正苦于以下问题:Java XMLChar.isContent方法的具体用法?Java XMLChar.isContent怎么用?Java XMLChar.isContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.xml.internal.fastinfoset.org.apache.xerces.util.XMLChar的用法示例。


在下文中一共展示了XMLChar.isContent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: decodeTwoToFourByteUtf8Character

import com.sun.xml.internal.fastinfoset.org.apache.xerces.util.XMLChar; //导入方法依赖的package包/类
private void decodeTwoToFourByteUtf8Character(int b1, int end) throws IOException {
    switch(DecoderStateTables.UTF8(b1)) {
        case DecoderStateTables.UTF8_TWO_BYTES:
        {
            // Decode byte 2
            if (end == _octetBufferOffset) {
                decodeUtf8StringLengthTooSmall();
            }
            final int b2 = _octetBuffer[_octetBufferOffset++] & 0xFF;
            if ((b2 & 0xC0) != 0x80) {
                decodeUtf8StringIllegalState();
            }

            // Character guaranteed to be in [0x20, 0xD7FF] range
            // since a character encoded in two bytes will be in the
            // range [0x80, 0x1FFF]
            _charBuffer[_charBufferLength++] = (char) (
                    ((b1 & 0x1F) << 6)
                    | (b2 & 0x3F));
            break;
        }
        case DecoderStateTables.UTF8_THREE_BYTES:
            final char c = decodeUtf8ThreeByteChar(end, b1);
            if (XMLChar.isContent(c)) {
                _charBuffer[_charBufferLength++] = c;
            } else {
                decodeUtf8StringIllegalState();
            }
            break;
        case DecoderStateTables.UTF8_FOUR_BYTES:
        {
            final int supplemental = decodeUtf8FourByteChar(end, b1);
            if (XMLChar.isContent(supplemental)) {
                _charBuffer[_charBufferLength++] = _utf8_highSurrogate;
                _charBuffer[_charBufferLength++] = _utf8_lowSurrogate;
            } else {
                decodeUtf8StringIllegalState();
            }
            break;
        }
        default:
            decodeUtf8StringIllegalState();
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:45,代码来源:Decoder.java


注:本文中的com.sun.xml.internal.fastinfoset.org.apache.xerces.util.XMLChar.isContent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。