【发布时间】:2017-08-05 14:33:24
【问题描述】:
我有这个 json 数据,我想得到 "fine" -> "start_time" 值。 我正在使用 Gson,我只是想知道简单的方法。
{
"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
}
]
}
}
]
}
【问题讨论】:
-
你尝试了什么?