- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试将 JSON 解析为对象。有两个类:用户和配置文件。用户获得了 Profile 的实例。
所以现在有一个 JSON 来构建用户对象。在这个 JSON 中列出了 User 和 Profile 的属性,如您所见,Profile 和 User 都有一个名为 List 的 HashMap。但是我想从这个 Json 中创建用户和配置文件,但是我得到了这个异常:
//编辑:
我删除了 Map<String, String> links
来自配置文件和用户。所以现在我没有收到任何错误,每个用户都有一个配置文件 - 但我仍然需要那些 map 。 GSON 是否可能无法区分 json 中的两个列表资源,因为它们具有相同的名称?
//肮脏的黑客解决方案:ArrayList 而不是 HashMap 是没有问题的。但是,我决定“手动”解析 Json 的这一部分,以将对象插入到我的 HashMap 中。
01-03 05:27:59.580: E/AndroidRuntime(4313): com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 12
01-03 05:27:59.580: E/AndroidRuntime(4313): at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:180)
用户:
public class User {
private String username;
private String slug;
private String email;
private Boolean emailVerified;
private Profile profile;
Map<String, String> links;
public User()
{
this.username = null;
this.slug = null;
this.email = null;
this.emailVerified = null;
this.profile = null;
this.links = new HashMap<String, String>();
}
public String getUsername(){
return this.username;
}
public String getSlug(){
return this.slug;
}
public String getEmail(){
return this.email;
}
public Boolean getEmailVerified(){
return this.emailVerified;
}
public Profile getProfile(){
return this.profile;
}
}
简介:
public class Profile {
private Map<String, String> links;
private String name;
private String description;
private String gender;
private String status;
private String timezone;
private Bitmap icon;
public Profile()
{
this.name = null;
this.description = null;
this.gender = null;
this.status = null;
this.timezone = null;
this.links = new HashMap<String, String>();
}
public String getName(){
return this.name;
}
public String getDescription(){
return this.description;
}
public String getGender(){
return this.gender;
}
public String getStatus(){
return this.status;
}
public String getTimezone(){
return this.timezone;
}
}
JSON 示例:
{ "email" : "foo@bar.com",
"emailVerified" : true,
"links" : [ { "href" : "http://xxx.de/api/users/4f3a73004bb67751bc000011",
"rel" : "self"
},
{ "href" : "http://xxx.de:/api/users/4f3a73004bb67751bc000011/followers",
"rel" : "https://xxx.com/rels/collection/follower"
},
{ "href" : "http://xxx.de/api/users/4f3a73004bb67751bc000011/friends",
"rel" : "https://xxx.com/rels/collection/friend"
},
{ "href" : "http://xxx.de/api/users/4f3a73004bb67751bc000011/activity_stream",
"rel" : "https://xxx.com/rels/activity_stream"
}
],
"profile" : { "description" : "",
"gender" : "male",
"links" : [ { "href" : "xxx.de/uploads/profile_images/xxx.png",
"rel" : "https://xxx.com/rels/image"
},
{ "href" : "http://xxx.de/api/users/xxx/profile",
"rel" : "self"
}
],
"name" : "Foo Bar",
"status" : "Status",
"timezone" : "CET"
},
"slug" : "foobaar",
"username" : "foobaar"
}
访问方法:
public static User parseUser(String json) {
JSONObject jsonObject;
Gson gson = new Gson();
try {
jsonObject = new JSONObject(json);
Log.v(TAG,jsonObject.toString(2));
User u = gson.fromJson(jsonObject.toString(), User.class);
return u;
} catch (JSONException e){
Log.e(TAG, "There was an error parsing the JSON (USER)" + e);
}
return null;
}
我的错误在哪里?我可以在 GSON 中使用这样的 HashMap 吗?提前致谢
最佳答案
使用 Gson Deserializer 类。它们非常简单:
要使其正常工作,您必须确保解析器不会尝试序列化侵权对象(在这种情况下是您的 map )。我会将您的 map 对象重命名为 _links 或类似的名称,以便序列化程序将跳过它。对您的个人资料也执行与此示例相同的操作。
完成后,您必须对其进行反序列化,并确保在 gson 对象中包含反序列化器:
User u;
GsonBuilder gb = new GsonBuilder();
gb.registerTypeAdapter(User.class, new UserDeserializer());
Gson g = gb.create();
u = g.fromJson(json, User.class);
public class UserDeserializer implements JsonDeserializer<UserDeserializer>
{
@Override
public User deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
{
User u = g.fromJson(json, User.class);
JsonObject jo = (JsonObject)json;
JsonElement je = jo.get("links");
//iterate through the je element to fill your map.
}
}
关于java - Gson 反序列化 - 尝试将 JSON 解析为对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9296427/
说真的,你怎么能在不发疯的情况下处理所有这些异常呢?我是不是读了太多关于异常处理的文章或什么?我尝试重构了几次,但每次似乎都以更糟糕的结果告终。也许我应该承认确实会发生异常(exception)情况,
背景 两者 try/rescue和 try/catch是 Elixir 中的错误处理技术。根据 corresponding chapter在介绍指南中。 Errors can be rescued u
每当我尝试在 Raspberry PI 上运行此 python 脚本时,我都会遇到问题: import socket import sys # Create a TCP/IP socket sock
我想知道一些关于 PHP 的 try , catch声明。 让我们考虑以下示例。 abstract class ExceptionA extends Exception {} class Except
我的 laravel v5.4 项目中有两个模型,user 和 admin。 在 config/auth.php 中,我向守卫和提供者添加了管理员,如下所示: 'guards' => [ 'w
try: r = requests.get(url, params={'s': thing}) except requests.ConnectionError, e: print e
我有以下代码。 但是,它并不能捕获所有错误,而我仍然会收到“throw er;//未处理的'错误'事件”。 为什么是这样? app.post('/api/properties/zip/:zip/bed
问题与细节 我正在使用自定义错误处理,遇到的错误之一是“路径中的非法字符”。我有一个自定义函数,旨在通过路径字符串查找此类非法字符,并在找到它们时引发自定义错误。但是我发现,取决于非法字符,Test-
This question already has answers here: How do I catch a numpy warning like it's an exception (not j
我正在使用其他人的代码,但我不熟悉try/catch,因此我举了一个类似的小例子。在第11行上,如果我写了error(''),似乎没有发现错误并增加了索引j。但是,编写error(' ')或error
我在我的一个程序中遇到了这个问题,在这种情况下,尝试/异常(exception)的错误使程序变得更好,以防用户意外输入了他们不应该输入的内容。它仍然给我错误,我为为什么感到困惑。如果对我的问题确实很重
我在尝试TRY ... CATCH块时遇到问题。有人可以解释为什么以下代码无法执行我的sp吗? DECLARE @Result int SET @Result = 0 BEGIN TRY SE
我有一个相当大的 powershell 脚本,其中包含许多(20 多个)执行各种操作的函数。 现在所有代码实际上都没有任何错误处理或重试功能。如果某个特定的任务/功能失败,它就会失败并继续。 我想改进
为什么我尝试时需要导入 inputmismatchException catch(InputMismatchException e){ System.out.println("
我对此感到困惑 - 我为辅助方法编写了一个 try/catch 。它的目的是捕获任何无效输入(任何不是“男性”或“女性”的内容(没有特定情况)。如果输入无效,它将通知用户,然后让他们重试。如果有效,则
我有时会发现自己处于如下场景。尽可能简单地陈述问题 “有时我会创建一段代码,Java 让我将其包含在 try/catch 语句中。我没有使用 catch,所以我将其留空。为什么这是错误的?” boo
我有点困惑为什么当我不使用 Try block 时会出现 Try block 错误。 我在代码块底部附近收到错误通知。如果我不使用 try/catch,有人可以向我解释为什么会发生这种情况吗? 它是否
我已经盯着我的电脑两个小时了,我不知道我做错了什么。谁能帮助我看到光明? package blackjack; import java.util.Random; import java.util.Sc
我想将方法保存在 Enum 中,但 Class.getDeclaredMethod 抛出 NoSuchMethodException,那么我该如何处理呢?我的代码: public enum Car
这个问题已经有答案了: Executing multi-line statements in the one-line command-line (18 个回答) 已关闭 3 年前。 如何使用try.
我是一名优秀的程序员,十分优秀!