c – JSONCPP不正确读取文件

所以我最近安装了 JSONCPP,并且由于某些原因,当我尝试这个代码时,它给我错误
#include <json.h>
#include <iostream>
#include <fstream>

int main(){
    bool alive = true;
    while (alive){
    Json::Value root;   // will contains the root value after parsing.
    Json::Reader reader;
    std::string test = "testis.json";
    bool parsingSuccessful = reader.parse( test,root,false );
    if ( !parsingSuccessful )
    {
        // report to the user the failure and their locations in the document.
        std::cout  << reader.getFormatedErrorMessages()
               << "\n";
    }

    std::string encoding = root.get("encoding","UTF-8" ).asString();
    std::cout << encoding << "\n";
    alive = false;


    }
    return 0;
}

这里是文件

{
"encoding" : "lab"
}

它表示在第1行列1上存在语法错误,并且必须有一个值,对象或数组.任何人都知道如何解决这个问题?

编辑:从pastebin更改为当前代码

解决方法

请参阅 Json::Reader::parse文档.对于该重载,字符串需要是实际文档,而不是文件名.

您可以使用istream overload与ifstream.

std::ifstream test("testis.json",std::ifstream::binary);

编辑:我得到它的工作:

#include "json/json.h"
#include <iostream>
#include <fstream>

int main(){
    bool alive = true;
    while (alive){
    Json::Value root;   // will contains the root value after parsing.
    Json::Reader reader;
    std::ifstream test("testis.json",std::ifstream::binary);
    bool parsingSuccessful = reader.parse( test,"UTF-8" ).asString();
    std::cout << encoding << "\n";
    alive = false;
    }
    return 0;
}

相关文章

/** C+⬑ * 默认成员函数 原来C++类中,有6个默认成员函数: 构造函数 析构函数 拷贝...
#pragma once // 1. 设计一个不能被拷贝的类/* 解析:拷贝只会放生在两个场景中:拷贝构造函数以及赋值运...
C类型转换 C语言:显式和隐式类型转换 隐式类型转化:编译器在编译阶段自动进行,能转就转,不能转就编译...
//异常的概念/*抛出异常后必须要捕获,否则终止程序(到最外层后会交给main管理,main的行为就是终止) try...
#pragma once /*Smart pointer 智能指针;灵巧指针 智能指针三大件//1.RAII//2.像指针一样使用//3.拷贝问...
目录&lt;future&gt;future模板类成员函数:promise类promise的使用例程:packaged_task模板类例程...