这是我想用Gson解析的JSON字符串。我想快速简单地解析它。
{
"values": [
[
1,
1,
0,
0,
0,
0,
11,
0.09090909090909091
],
[
[
0,
0,
0,
0,
0,
1,
0
],
[
0,
0,
0,
0,
0,
1,
0
],
[
0,
0,
0,
0,
0,
0,
0
],
[
0,
0,
0,
0,
0,
0,
0
],
[
0,
0,
0,
0,
0,
0,
0
],
[
0,
0,
0,
0,
0,
0,
0
],
[
0,
0,
0,
0,
0,
11,
0
],
[
0,
0,
0,
0,
0,
0.09090909090909091,
0
]
]
]
}
但我不知道如何用Gson编写解析代码。 最好的结果是如果我可以从解析的对象中提取List。
有可能我写这样的课。
class Value
{
@SerializedName("0")
List<Float> value1;
@SerializedName("1")
List<Integer> value2;
...........
}
感谢大家帮助我。
答案 0 :(得分:2)
这是我所知道的最快的方式,以最适合您的格式获取所需信息。
您的JSON由包含list1的列表组成 - 列表为double - 和list2,列表为double。假设您要完全解析您提供的示例,这是一个可以使用的自包含类。
如果您需要有关其工作原理的模式详细信息,请随时提出。
package stackoverflow.questions;
import java.lang.reflect.Type;
import java.util.List;
import stackoverflow.questions.Test.Wrapper;
import com.google.gson.*;
import com.google.gson.reflect.TypeToken;
public class Q20118749 {
/**
* @param args
*/
public static void main(String[] args) {
String json = "{\"values\":[[1,1,0,0,0,0,11,0.09090909090909091],[[0,0,0,0,0,1,0],[0,0,0,0,0,1,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,11,0],[0,0,0,0,0,0.09090909090909091,0]]]}";
JsonElement je = new JsonParser().parse(json);
JsonArray list = je.getAsJsonObject().get("values").getAsJsonArray(); // to get rid of the value part
Type listType1 = new TypeToken<List<Double>>() {}.getType();
Type listType2 = new TypeToken<List<List<Double>>>() {}.getType();
Gson g = new Gson();
List<Double> listOfDouble = g.fromJson(list.get(0), listType1);
List<List<Double>> listOfListOfDouble = g.fromJson(list.get(1), listType2);
System.out.println(listOfDouble);
System.out.println(listOfListOfDouble);
}
}
这是我的执行:
[1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.09090909090909091]
[[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.09090909090909091, 0.0]]
如果您的数据发生了变化,您当然需要更改此代码。
答案 1 :(得分:0)
使用此代码。
public class MyObject{
@SerializedName("values")
private Values[] mValues;
public Value[] getLoc() {
return mvalues;
}
}
public class Values{
@SerializedName("0")
private Zero[] mZero;
@SerializedName("1")
private One[] mOne;
public Zero[] getZero() {
return mZero;
}
public Value[] getOne() {
return mOne;
}
}
public class Zero{
@SerializedName("0")
private zint zero;
public int getZeroValue() {
return zero;
.........
}
}
像这样你必须写