我必须重构我的应用程序的某些区域以使用 Gson 中的流 API,但很快我就遇到了一个奇怪的问题,我不知道如何解决。我的类上的以下构造函数接收一个 JsonReader 并且应该循环遍历对象的属性。LogCat 显示第一个属性输出的名称,然后是异常“预期名称,但为布尔值”。我只使用 reader.nextName() 询问名称。是什么赋予了?
JSON对象:
{
"IsActive":true,
"LocationName":"Denver",
...
}
类构造函数:
public AppLocation(JsonReader reader){
try {
reader.beginObject();
while(reader.hasNext()){
final String pName = reader.nextName();
final boolean isNull = reader.peek() == JsonToken.NULL;
if(!isNull){
Log.d("MENET", pName);
}else{
reader.skipValue();
}
}
reader.endObject();
} catch (IOException e) {
Log.e("MENET", e.getMessage());
}
}