-4
私はこのjsonデータを持っていますが、 "fine" - > "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