JSONKit :Illegal \u Unicode escape sequence

前端之家收集整理的这篇文章主要介绍了JSONKit :Illegal \u Unicode escape sequence前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

When JSON string contains unicodes between u0000 and u001f,JSONKit parser fails to work properly. and throws a error as “Illegal u Unicode escape sequence”.

This is a known issue(link) but seems like the author thought it’s a fault caused by content provider and didn’t intend to have any fix on this issue.

In this particular case,these services are very clearly “in the wrong”.RFC 4627is unambiguous that characters <0x20are verboten. In cases like there,where something is clearly violating the standard,my default response is that “It’s the other persons (web service) problem.” The standard is the standard,and it is Right(tm),even its mistakes.

But in fact there are many JSON encoder may generates JSON string contains invalid characters < 0×20 including Python2.6,<not tested in Python2.7>,pre-rails3. We all love the clean codes but we need make things done first.

SOLUTION:

Edit JSONKit.m file:

//GOTO Line 1462 or nearby
//      remove this line
//      if(JK_EXPECT_F(currentChar < 0x20UL)) { jk_error(parseState,@"Invalid character < 0x20 found in string: 0x%2.2x.",currentChar); stringState = JSONStringStateError; goto finishedParsing; }
//      add following codes
        if(JK_EXPECT_F(currentChar < 0x20UL) && (parseState->parSEOptionFlags & JKParSEOptionLooseUnicode) == 0) {
            jk_error(parseState,currentChar); stringState = JSONStringStateError; goto finishedParsing;
        }
        else {
            currentChar = 0xFFFDUL;
        }
原文链接:/json/290535.html

猜你在找的Json相关文章