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;
        }

相关文章

AJAX是一种基于JavaScript和XML的技术,能够使网页实现异步交...
在网页开发中,我们常常需要通过Ajax从后端获取数据并在页面...
在前端开发中,经常需要循环JSON对象数组进行数据操作。使用...
AJAX(Asynchronous JavaScript and XML)是一种用于创建 We...
AJAX技术被广泛应用于现代Web开发,它可以在无需重新加载页面...
Ajax是一种通过JavaScript和HTTP请求交互的技术,可以实现无...