gpt4 book ai didi

android - Android中解析WordPress JSON API

转载 作者:行者123 更新时间:2023-11-30 01:21:30 24 4
gpt4 key购买 nike

我没有收到任何错误消息,但解析似乎无法正常工作。这是紧凑的 JSON 响应:

json response

我的“WPPost”有问题:

    public class WPPost {

int id;
String title;
String content;
ArrayList<WPPostAttachment> attachments;
WPPostCustomFields custom_fields;

public String getContent() {
return content;
}

public String getTitle() {
return title;
}

public int getId() {
return id;
}

public ArrayList<WPPostAttachment> getAttachments() {
return attachments;
}

public WPPostCustomFields getCustomFields() {
return custom_fields; //Problem here
}

}

WPPostAttachement getter 工作正常,但它的结构与自定义字段结构不同。

    public class WPPostAttachment {

String id;
String url;
String title;

public String getId() {
return id;
}

public String getUrl() {
return url;
}

public String getTitle() {
return title;
}

}

public class WPPostCustomFields {

String address;

public String getAddress() {
return address;
}

}

我应该如何更改 WPPost 类以使解析工作?

最佳答案

您可以使用 this将 json 对象转换为 POJO(普通旧 Java 对象)类型的在线工具。复制粘贴您的 json 并设置源类型:JSON 和注释样式:GSON。按您喜欢的方式更改包和类名称。希望这可以帮助。如果您仍然无法获得正确的 POJO,您可以将您的 json 对象以文本格式提供给我,我会将其转换为 POJO。谢谢。

关于android - Android中解析WordPress JSON API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37042527/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com