使用C ++ REST SDK(Casablanca)从文件中读取JSON

时间:2015-03-10 19:45:19

标签: c++ json casablanca

我有以下代码,应该读取文本文件的内容并将其解析为JSON

            try {
                string_t        importFile = argv[++iArgCounter];           // extract filename
                ifstream_t      f(importFile);                              // filestream of working file
                stringstream_t  s;                                          // string stream for holding JSON read from file
                json::value     v;                                          // JSON read from input file

                iArgCounter++;                                              // increment arg counter
                if (f) {                                                    
                    s << f.rdbuf();                                         // stream results of reading from file stream into string stream
                    f.close();                                              // close the filestream

                    v.parse(s);                                             // parse the resultant string stream.
                }
            }
            catch (web::json::json_exception excep) {
                std::cout << "ERROR Parsing JSON: ";
                std::cout << excep.what();
                break;
            }

以下测试JSON文件

[
    {
        "Destinations":
            [
                {
                    "Domain": "127.0.0.1",
                    "Name": "GoogleLogin",
                    "Port": "8090"
                }
            ],
        "Listeners":
            [
                {
                    "Domain": "127.0.0.1",
                    "Name": "LoginRequest",
                    "Port": "8080",
                    "Route": "ProcessLoginRequest"
                }
            ],
        "Name": "LoginProcess",
        "Routes":
            [
            {
                "Name": "ProcessLoginRequest",
                "Rules":
                    [{
                        "DestinationIfTrue": "GoogleLogin",
                        "LeftTerm":
                            {
                                "RuleTermType": 1,
                                "Value": "NETWORK"
                            },
                        "Operator": 2,
                        "RightTerm":
                            {
                                "RuleTermType": 0,
                                "Value": "NETWORK"
                            }
                    }],
                "Transformations": []
            }
            ]
    }
]

麻烦是无论JSON代码是什么,我得到错误'第1行,第2列语法错误:格式错误的令牌'。据我所知,JSON格式正确,所有括号均衡。

代码在64位Windows 7上运行。

任何人都知道为什么会这么想(或者我如何将stringstream_t转换为字符串并查看其实际读取的内容)。

2 个答案:

答案 0 :(得分:1)

  • 该文件是否为utf16编码?
  • 或者用十六进制编辑器打开json文件,检查你的json文件是否有BOM(字节标记)。

答案 1 :(得分:1)

更改行

 v = json::value::parse(s)

qsort()