我检索了一个JSON格式的字符串(字符串名称为" weatherJsonStr"),字符串如下所示:
"... day": 28.09, "min": 2.73,"max": 28.09, ..."
我想在max,即28.09前面提取值并将其存储在变量中。 我找到了索引,其中" max"使用以下代码启动:
String max="max";
int index=weatherJsonStr.indexOf(max);
之后我有点失落。我最终做了:
int index=weatherJsonStr.indexOf(max)+5;//to get to the starting index of 28.09
但我无法知道如何在此之后提取数值。