您好,我使用Spirit_Json,我对json不是很了解,想知道如何从这个文件中获取字符串/整数。
像get函数之类的?
{
"Rune_fire1": {
"level": 1,
"name": "Fire Rune 1",
"damage": 1,
"hp": 0,
"runecost": 0,
"defense": 0,
"negate": 0,
"evasion": 0,
"healing": 0,
"description": "The First Shard of the Fire Rune."
},
"Rune_fire2": {
"level": 1,
"name": "Fire Rune 2",
"damage": 2,
"hp": 0,
"runecost": 0,
"defense": 0,
"negate": 0,
"evasion": 0,
"healing": 0,
"description": "The Second Shard of the Fire Rune."
},
"Rune_fire3": {
"level": 1,
"name": "Fire Rune 3",
"damage": 3,
"hp": 0,
"runecost": 0,
"defense": 0,
"negate": 0,
"evasion": 0,
"healing": 0,
"description": "The Third Shard of the Fire Rune."
},
"Rune_fire4": {
"level": 1,
"name": "Fire Rune 4",
"damage": 4,
"hp": 0,
"runecost": 0,
"defense": 0,
"negate": 0,
"evasion": 0,
"healing": 0,
"description": "The Fourth Shard of the Fire Rune."
},
"Rune_fire5": {
"level": 1,
"name": "Fire Rune 5",
"damage": 5,
"hp": 0,
"runecost": 0,
"defense": 0,
"negate": 0,
"evasion": 0,
"healing": 0,
"description": "The Fifth Shard of the Fire Rune."
},发布于 2016-10-11 11:21:31
你可以为json使用一个库。有一个带有boost-lib的:enter link description here
还有其他的,比如jsoncpp。
https://stackoverflow.com/questions/39969994
复制相似问题