作者·2010-10-19 10:39
·

ESB 2010- 9-29 异常处理 小记

字数 1877阅读 2330评论 1赞 2

About Exception:
An invalid XML character (Unicode: 0xb) was found in the element content of the document.

原因:
从异常来看,很明显是因为字节数组中存在 Unicode: 0xb,而这个字节在Xml中被认为是非法字符。

对于一些经过编码或加、解密的字符串中,很容易会出现这个 0xb,
特别是在加、解密中,经常会涉及到字符填充,而填充物通常是 0xb,
需对于0x00-0x20 都会引起一定的问题,又因为这些字符不可见,因此用通常的编辑器进行编辑的时候找不到问题所在。
而在转成String后也觉察不到任何异常。
所以在转成XML格式时要对字符串进行检测:
*  Verify that no character has a hex value greater than 0xFFFD, or less than 0x20.
* Check that the character is not equal to the tab ("t), the newline ("n), the carriage return ("r), or is an invalid XML character below the range of 0x20. If any of these characters occur, an exception is thrown.

pubic String  CheckUnicodeString(String value)
    {
     char xmlChar = value.toCharArray();
    for (int i=0; i < xmlChar.Length; ++i) {
        if (xmlChar[i] > 0xFFFD)
        {
            throw new Exception("Invalid Unicode");
           //或者直接替换掉0xb 
            xmlChar[i] =' ';// 用空格替换
        }
        else if (xmlChar[i] < 0x20 && xmlChar[i] != 't' & xmlChar[i] != 'n' & xmlChar[i] != 'r')
        {
            throw new Exception("Invalid Xml Characters");
           //或者直接替换掉0xb
            xmlChar[i] =' ' ;// 用空格替换
        }
       return new String( xmlChar );
    }

如果觉得我的文章对您有用,请点赞。您的支持将鼓励我继续创作!

2

添加新评论1 条评论

艾依然艾依然其它惠牛农业
2010-10-19 10:53
学习!学习!
本篇文章被推送到网站首页!
Ctrl+Enter 发表

作者其他文章

相关文章

相关问题

相关资料

X社区推广