java - 使用 gson 反序列化对象的特定 JSON 字段

我有以下 JSON 字符串:

{
    "ms": "images,5160.1",
    "turl": "http://ts1.mm.bing.net/th?id=I4693880201938488&pid=1.1",
    "height": "178",
    "width": "300",
    "imgurl": "http://www.attackingsoccer.com/wp-content/uploads/2011/07/World-Cup-2012-Draw.jpg",
    "offset": "0",
    "t": "World Cup 2014 Qualification – Europe Draw World Cup 2012 Draw ...",
    "w": "719",
    "h": "427",
    "ff": "jpeg",
    "fs": "52",
    "durl": "www.attackingsoccer.com/2011/07/world-cup-2012-qualification-europe...",
    "surl": "http://www.attackingsoccer.com/2011/07/world-cup-2012-qualification-europe-draw/world-cup-2012-draw/",
    "mid": "D9E91A0BA6F9E4C65C82452E2A5604BAC8744F1B",
    "k": "6",
    "ns": "API.images"
}

我需要将 imgurl 的值存储在单独的字符串中。

这是我到目前为止所拥有的,但这只是给了我整个 JSON 字符串而不是特定的 imgurl 字段。

Gson gson = new Gson();
Data data = new Data();
data = gson.fromJson(toExtract, Data.class);
System.out.println(data);

toExtract 是 JSON 字符串。 这是我的数据类:

public class Data 
{
    public List<urlString> myurls;
}

class urlString
{
    String imgurl;
}

最佳答案

解析这么简单的结构时,不需要专门的类。

解决方案 1:

要使用 gson 从您的字符串中获取 imgurURL,您可以这样做:

JsonParser parser = new JsonParser();
JsonObject obj = parser.parse(toExtract).getAsJsonObject();
String imgurl = obj.get("imgurl").getAsString();

这使用原始解析为 JsonObject .

解决方案 2:

或者,您可以使用

Properties 实例中提取全部数据
 Properties data = gson.fromJson(toExtract, Properties.class);

并阅读您的网址

String imgurl = data.getProperty("imgurl");

https://stackoverflow.com/questions/11428329/

相关文章:

java - 如何从 JSON 对象中获取日期

json - JSON 的正确 MIME 类型是什么?

c# - 如何将 IEnumerable 转换为 JSON?

ios - swift: 将多个 对象添加到 NSDictionary

java - 我如何反序列化以 jackson 为单位的时间戳?

python - 将 JSON 日期字符串转换为 Python 日期时间

c# - 在 JSON.NET 中序列化/反序列化字节数组

javascript - 为什么有些对象文字属性被引用而有些则没有?

php - json_encode() 返回 false

ios - 如何让 NSJSONSerialization 将 boolean 值输出为真或假?