本文介绍了JSON Java类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一个简单的方法来映射搭载Android的API的方式数据JSON我的类的字段?

JSON:

  {电子邮件:电子邮件,密码:通过'}
 

我的类:

 类证书
{
    字符串的电子邮件;
    字符串密码;
}
 

解决方案

使用 org.json -package。

 的JSONObject X =新的JSONObject(jsonString);
证书C =新凭证();
c.email = x.getString(电子邮件);
c.password = x.getString(密码);
 

它也有一部分Android运行的,所以你不需要任何外部包装。

Is there an easy way to map data from JSON to fields of my class by means of android APIs?

JSON:

{ email: 'email', password: 'pass' }

My class:

class Credentials
{
    string email;
    string password;
}
解决方案

Use the org.json-Package.

JSONObject x = new JSONObject(jsonString);
Credentials c = new Credentials();
c.email = x.getString("email");
c.password = x.getString("password");

Its also part of the android runtime, so you dont need any external package.

这篇关于JSON Java类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 21:12