-4
我有這個json數據,我想要「好」 - >「start_time」值。 我使用Gson,我只是想知道簡單的方法。如何從使用gson解析json
{
"result_index": 0,
"results": [
{
"final": true,
"alternatives": [
{
"confidence": 0.715,
"transcript": "hello how are you holds the medically I hope you are fine "
}
],
"keywords_result": {
"fine": [
{
"normalized_text": "fine",
"start_time": 5.85,
"end_time": 6.27,
"confidence": 0.918
}
]
}
}
]
}
看看這個:https://stackoverflow.com/questions/5490789/json-parsing-using-gson-for-java – goblinjuice
你試過什麼? –
[使用Gson for Java進行JSON解析]的可能重複(https://stackoverflow.com/questions/5490789/json-parsing-using-gson-for-java) – mgyongyosi