当前位置: 首页 > 知识库问答 >
问题:

Android JSON 解析改造

段干茂实
2023-03-14

我是翻新和json的新手,我不知道如何解析下一个JSON字符串:

{
"weight":[
    {   "bmi":21,
        "date":"2016-12-09",
        "fat":14.059000015258789,
        "logId":1222222222222,
        "source":"Aria",
        "time":"11:58:24",
        "weight":68
    },
    {   "bmi":21.83,
        "date":"2016-12-14",
        "logId":1222222222223,
        "source":"Aria",
        "time":"14:31:39",
        "weight":70.7
    }
]

}

我只想要权重数组中的“权重”和“日期”。我根据一些例子创建了一个pojo类,但是它不起作用。同样,当我在pojo类中尝试使用< code >时,我无法获得字符串形式的“weight ”(我将把它用作double)。string()。

(我知道使用<代码>。toString()显示类似“com.myPackage.MyPojo@xxxx”)的内容。

目前,我只能通过响应体获取整个json:

Call<ResponseBody>call = repository.getFitbitApi().getData();
               call.enqueue(new Callback<ResponseBody>() {
                   @Override
                   public void onResponse(Call<ResponseBody> call, retrofit2.Response<ResponseBody> response) {
                       try {
                           System.out.println(response.body().string());
                       } catch (IOException e) {
                           e.printStackTrace();
                       }
                   }

                   @Override
                   public void onFailure(Call<ResponseBody> call, Throwable t) {

                   }
               });

我做错了什么?这是我的pojo课程,只是一个尝试...:

public class WeightList {

@SerializedName("weight")
@Expose

private ArrayList<WeightLogFitbit> weight = new ArrayList<>();

public WeightList(){

}

public ArrayList<WeightLogFitbit> getWeight() {
    return weight;
}


public void setWeight(ArrayList<WeightLogFitbit> weight) {
    this.weight = weight;
}

}和:

public class WeightLogFitbit {

//Variables in my JSON
@SerializedName("bmi")
@Expose
private String bmi;

@SerializedName("date")
@Expose
private String date;

@SerializedName("logId")
@Expose
private String logId;

@SerializedName("source")
@Expose
private String source;

@SerializedName("time")
@Expose
private String time;

@SerializedName("weight")
@Expose
private double weight;

@SerializedName("fat")
@Expose
private String fat;

public WeightLogFitbit(){}

//Getters and setters
public double getWeight() {
    return weight;
}

public void setWeight(double weight) {
    this.weight = weight;
}

public String getDate() {
    return date;
}
public void setDate(String date) {
    this.date = date;
}

public String getSource() {
    return source;
}
public void setSource(String source) {
    this.source = source;
}

public String getBmi(){
    return bmi;
}
public void setBmi(String bmi) {
        this.bmi = bmi;
    }

//
public String getFat(){
    return fat;
}
public void setFat(String fat) {
    this.fat = fat;
}


public String getTime() {
    return time;
}
    public void setTime(String time) {
        this.time = time;
    }
public String getLogId() {
    return logId;
}
public void setLogId(String logId) {
        this.logId = logId;
}

}

注意:我用的是RxSocialConnect库,它实现了RxJava,retrieve 2,OkHttp3和gson,以防万一。我是按照这个例子做的。

我使用的其余类:

public class FitbitBtnActivity extends AppCompatActivity {

private FitbitRepository repository;

    @Override protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_fitbit_btn);

        repository = new FitbitRepository();

        setUpFitbit();

    }


private void setUpFitbit() {
    findViewById(R.id.fitbitbtn).setOnClickListener(v ->
            RxSocialConnect.with(this, repository.fitbitService())
                    .subscribe(response -> response.targetUI().showToken(response.token()),
                            error -> showError(error))
    );

    findViewById(R.id.retrievebtn).setOnClickListener(v -> {
    Call<ResponseBody>call = repository.getFitbitApi().getData();
               call.enqueue(new Callback<ResponseBody>() {
                   @Override
                   public void onResponse(Call<ResponseBody> call, retrofit2.Response<ResponseBody> response) {
                       try {
                           System.out.println(response.body().string());
                       } catch (IOException e) {
                           e.printStackTrace();
                       }
                   }

                   @Override
                   public void onFailure(Call<ResponseBody> call, Throwable t) {

                   }
               });

                //Original code from example in RxSocialConnect

                       /*.subscribeOn(Schedulers.io())
                .observeOn(AndroidSchedulers.mainThread())
                .subscribe(new Action1<Object>() {
                               @Override
                               public void call(Object user) {
                                   FitbitBtnActivity.this.showUserProfile(user.toString());
                               }
                           },
                        error -> FitbitBtnActivity.this.showError(error));*/

    }
    );
}

以及:

public class FitbitRepository {


private final FitbitApiRest fitbitApi;

public FitbitRepository() {
    fitbitApi = initFitbitApiRest();
}

private FitbitApiRest initFitbitApiRest() {
    OkHttpClient client = new OkHttpClient.Builder()
            .addInterceptor(new OAuth2Interceptor(FitbitApi20.class))
            .build();

    return new Retrofit.Builder()
            .baseUrl(FitbitApiRest.URL_BASE)
            .client(client)
            .addCallAdapterFactory(RxJavaCallAdapterFactory.create())
            .addConverterFactory(GsonConverterFactory.create())
            .build().create(FitbitApiRest.class);
}



FitbitApiRest getFitbitApi() {
    return fitbitApi;
}



interface FitbitApiRest {
    String URL_BASE = "https://api.fitbit.com";

    @GET("myrequest.json")
    Call<ResponseBody> getData();
}

OAuth20Service fitbitService() {


    final String client_id = "xxxxx";
    final String client_secret = "1xxxxxxxxxxxxxxxxxx";
    final String redirect_uri = "http://example.com";
    final String permissions = "weight";

    return new ServiceBuilder()
            .apiKey(client_id)
            .apiSecret(client_secret)
            .callback(redirect_uri)
            .scope(permissions)
            .build(FitbitApi20.instance());
}

}

共有1个答案

淳于知
2023-03-14

您需要将其添加到您的依赖项中:

compile 'com.squareup.retrofit2:converter-gson:your-version'

然后将gson转换器添加到您的改装实例中,如下所示:

Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://api.example.com")
.addConverterFactory(GsonConverterFactory.create())
.build();

并将api中的调用改为返回< code>WeightList:

Call<WeightList> getData();
 类似资料:
  • 其答复如下: 我相信问题出在响应前面的jsonFlickrApi上。 执行以下代码时: }

  • 问题 你想读取一个XML文档,对它最一些修改,然后将结果写回XML文档。 解决方案 使用 xml.etree.ElementTree 模块可以很容易的处理这些任务。 第一步是以通常的方式来解析这个文档。例如,假设你有一个名为 pred.xml 的文档,类似下面这样: <?xml version="1.0"?> <stop> <id>14791</id> <nm>Clark &amp

  • 无法解析以下json数据。获得成功响应但返回的正文为空以下是我通过Web浏览器获得的json响应。 下面是用于解析所用响应类的模型类 Departure.java 调用api 我从浏览器中得到了正确的响应。但当通过改装库调用时,获得成功响应(200),但正文为空。 我从浏览器中得到了正确的响应。但当通过改装库调用时,获得成功响应(200),但正文为空。

  • 问题内容: 我有一个XML文件,我需要在其中搜索特定的标签并更新其值。问题在于,使用Sax解析器是“必须的”。我必须通过“仅”使用Sax解析器来找到这些标签,dom stax j4dom dom4j解析器不在考虑范围之内。 我可以通过将xml文件转换为字符串并使用sax解析器对其进行解析并按对象附加新值来完成此任务吗?可以吗 或您会推荐什么? 问题答案: 这是一个有效的代码,只需添加缺少的导入。它

  • 此问题是由打字错误或无法再复制的问题引起的。虽然这里可能有类似的问题,但这一问题的解决方式不太可能对未来的读者有所帮助。 在我以前版本的应用程序中,我使用了Apache客户端,所有的东西都工作了,而且仍然工作。但由于性能有所提高,我们决定进行改装。问题是每次我都会遇到“无法解析主机”xxxxxx:没有与主机名关联的地址”。 我把这个放在舱单里了 我还忘了什么吗? 这是url:https://www

  • 获取此错误:Java . lang . runtime exception:org . simple framework . XML . core . method exception:Annotation @ org . simple framework . XML . element(data = false,name=,required=false,type=void)必须标记set或get