- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在实现一个 retrofit 2 接口(interface)来解析 JSON 元素(视频 url、缩略图、标题等)
JSONschema2Pojo 产生了 4 个 pojo 类,但主要/根类是 VideoInfo(不要介意实现 Parcelable,我还没有对它做任何事情)是缺@SerializedName("....")
影响任何事情,知道这是由 jsonschema2pojo 自动生成的?更新:生成了新的 pojo 类,这次带有 Gson 注释 (@SerializedName("") and @Expose)
但仍然有同样的问题。
import android.os.Parcel;
import android.os.Parcelable;
import java.util.ArrayList;
import java.util.List;
public class VideoInfo implements Parcelable {
private List<Item> items = new ArrayList<Item>();
private int pageNumber;
private int pageSize;
private int totalCount;
/**
* No args constructor for use in serialization
*
*/
public VideoInfo() {
}
/**
*
* @param totalCount
* @param items
* @param pageSize
* @param pageNumber
*/
public VideoInfo(List<Item> items, int pageNumber, int pageSize, int totalCount) {
this.items = items;
this.pageNumber = pageNumber;
this.pageSize = pageSize;
this.totalCount = totalCount;
}
/**
*
* @return
* The items
*/
public List<Item> getItems() {
return items;
}
/**
*
* @param items
* The items
*/
public void setItems(List<Item> items) {
this.items = items;
}
/**
*
* @return
* The pageNumber
*/
public int getPageNumber() {
return pageNumber;
}
/**
*
* @param pageNumber
* The page_number
*/
public void setPageNumber(int pageNumber) {
this.pageNumber = pageNumber;
}
/**
*
* @return
* The pageSize
*/
public int getPageSize() {
return pageSize;
}
/**
*
* @param pageSize
* The page_size
*/
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
/**
*
* @return
* The totalCount
*/
public int getTotalCount() {
return totalCount;
}
/**
*
* @param totalCount
* The total_count
*/
public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
}
}
更新:在上面的 VideoInfo 类中,您可以看到 private List<Item> items = new ArrayList<Item>();
这是因为还有另一个 pojo 类有一个 tiem 列表,如下所示:
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
import java.util.List;
public class Item {
@SerializedName("id")
@Expose
private int id;
@SerializedName("name")
@Expose
private String name;
@SerializedName("shortDescription")
@Expose
private String shortDescription;
@SerializedName("creationDate")
@Expose
private String creationDate;
@SerializedName("publishedDate")
@Expose
private String publishedDate;
@SerializedName("linkURL")
@Expose
private String linkURL;
@SerializedName("linkText")
@Expose
private String linkText;
@SerializedName("tags")
@Expose
private List<String> tags = new ArrayList<String>();
@SerializedName("videoStillURL")
@Expose
private String videoStillURL;
@SerializedName("thumbnailURL")
@Expose
private String thumbnailURL;
@SerializedName("length")
@Expose
private int length;
@SerializedName("renditions")
@Expose
private List<Rendition> renditions = new ArrayList<Rendition>();
@SerializedName("IOSRenditions")
@Expose
private List<IOSRendition> IOSRenditions = new ArrayList<IOSRendition>();
@SerializedName("HDSRenditions")
@Expose
private List<Object> HDSRenditions = new ArrayList<Object>();
/**
* No args constructor for use in serialization
*
*/
public Item() {
}
/**
*
* @param tags
* @param videoStillURL
* @param HDSRenditions
* @param id
* @param creationDate
* @param IOSRenditions
* @param linkText
* @param shortDescription
* @param renditions
* @param name
* @param linkURL
* @param length
* @param publishedDate
* @param thumbnailURL
*/
public Item(int id, String name, String shortDescription, String creationDate, String publishedDate, String linkURL, String linkText, List<String> tags, String videoStillURL, String thumbnailURL, int length, List<Rendition> renditions, List<IOSRendition> IOSRenditions, List<Object> HDSRenditions) {
this.id = id;
this.name = name;
this.shortDescription = shortDescription;
this.creationDate = creationDate;
this.publishedDate = publishedDate;
this.linkURL = linkURL;
this.linkText = linkText;
this.tags = tags;
this.videoStillURL = videoStillURL;
this.thumbnailURL = thumbnailURL;
this.length = length;
this.renditions = renditions;
this.IOSRenditions = IOSRenditions;
this.HDSRenditions = HDSRenditions;
}
/**
*
* @return
* The id
*/
public int getId() {
return id;
}
/**
*
* @param id
* The id
*/
public void setId(int id) {
this.id = id;
}
/**
*
* @return
* The name
*/
public String getName() {
return name;
}
/**
*
* @param name
* The name
*/
public void setName(String name) {
this.name = name;
}
/**
*
* @return
* The shortDescription
*/
public String getShortDescription() {
return shortDescription;
}
/**
*
* @param shortDescription
* The shortDescription
*/
public void setShortDescription(String shortDescription) {
this.shortDescription = shortDescription;
}
/**
*
* @return
* The creationDate
*/
public String getCreationDate() {
return creationDate;
}
/**
*
* @param creationDate
* The creationDate
*/
public void setCreationDate(String creationDate) {
this.creationDate = creationDate;
}
/**
*
* @return
* The publishedDate
*/
public String getPublishedDate() {
return publishedDate;
}
/**
*
* @param publishedDate
* The publishedDate
*/
public void setPublishedDate(String publishedDate) {
this.publishedDate = publishedDate;
}
/**
*
* @return
* The linkURL
*/
public String getLinkURL() {
return linkURL;
}
/**
*
* @param linkURL
* The linkURL
*/
public void setLinkURL(String linkURL) {
this.linkURL = linkURL;
}
/**
*
* @return
* The linkText
*/
public String getLinkText() {
return linkText;
}
/**
*
* @param linkText
* The linkText
*/
public void setLinkText(String linkText) {
this.linkText = linkText;
}
/**
*
* @return
* The tags
*/
public List<String> getTags() {
return tags;
}
/**
*
* @param tags
* The tags
*/
public void setTags(List<String> tags) {
this.tags = tags;
}
/**
*
* @return
* The videoStillURL
*/
public String getVideoStillURL() {
return videoStillURL;
}
/**
*
* @param videoStillURL
* The videoStillURL
*/
public void setVideoStillURL(String videoStillURL) {
this.videoStillURL = videoStillURL;
}
/**
*
* @return
* The thumbnailURL
*/
public String getThumbnailURL() {
return thumbnailURL;
}
/**
*
* @param thumbnailURL
* The thumbnailURL
*/
public void setThumbnailURL(String thumbnailURL) {
this.thumbnailURL = thumbnailURL;
}
/**
*
* @return
* The length
*/
public int getLength() {
return length;
}
/**
*
* @param length
* The length
*/
public void setLength(int length) {
this.length = length;
}
/**
*
* @return
* The renditions
*/
public List<Rendition> getRenditions() {
return renditions;
}
/**
*
* @param renditions
* The renditions
*/
public void setRenditions(List<Rendition> renditions) {
this.renditions = renditions;
}
/**
*
* @return
* The IOSRenditions
*/
public List<IOSRendition> getIOSRenditions() {
return IOSRenditions;
}
/**
*
* @param IOSRenditions
* The IOSRenditions
*/
public void setIOSRenditions(List<IOSRendition> IOSRenditions) {
this.IOSRenditions = IOSRenditions;
}
/**
*
* @return
* The HDSRenditions
*/
public List<Object> getHDSRenditions() {
return HDSRenditions;
}
/**
*
* @param HDSRenditions
* The HDSRenditions
*/
public void setHDSRenditions(List<Object> HDSRenditions) {
this.HDSRenditions = HDSRenditions;
}
}
更新:所以在上面你可以看到我们已经定义了private List<Rendition> renditions = new ArrayList<Rendition>();
这是在另一个 pojo 类 Rendition.class 中定义的:
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Rendition {
@SerializedName("audioOnly")
@Expose
private boolean audioOnly;
@SerializedName("controllerType")
@Expose
private String controllerType;
@SerializedName("displayName")
@Expose
private String displayName;
@SerializedName("encodingRate")
@Expose
private int encodingRate;
@SerializedName("frameHeight")
@Expose
private int frameHeight;
@SerializedName("frameWidth")
@Expose
private int frameWidth;
@SerializedName("id")
@Expose
private int id;
@SerializedName("referenceId")
@Expose
private Object referenceId;
@SerializedName("remoteStreamName")
@Expose
private Object remoteStreamName;
@SerializedName("remoteUrl")
@Expose
private Object remoteUrl;
@SerializedName("size")
@Expose
private int size;
@SerializedName("uploadTimestampMillis")
@Expose
private int uploadTimestampMillis;
@SerializedName("url")
@Expose
private String url;
@SerializedName("videoCodec")
@Expose
private String videoCodec;
@SerializedName("videoContainer")
@Expose
private String videoContainer;
@SerializedName("videoDuration")
@Expose
private int videoDuration;
/**
* No args constructor for use in serialization
*
*/
public Rendition() {
}
/**
*
* @param controllerType
* @param encodingRate
* @param referenceId
* @param url
* @param size
* @param id
* @param uploadTimestampMillis
* @param frameWidth
* @param remoteUrl
* @param videoContainer
* @param remoteStreamName
* @param displayName
* @param videoCodec
* @param videoDuration
* @param audioOnly
* @param frameHeight
*/
public Rendition(boolean audioOnly, String controllerType, String displayName, int encodingRate, int frameHeight, int frameWidth, int id, Object referenceId, Object remoteStreamName, Object remoteUrl, int size, int uploadTimestampMillis, String url, String videoCodec, String videoContainer, int videoDuration) {
this.audioOnly = audioOnly;
this.controllerType = controllerType;
this.displayName = displayName;
this.encodingRate = encodingRate;
this.frameHeight = frameHeight;
this.frameWidth = frameWidth;
this.id = id;
this.referenceId = referenceId;
this.remoteStreamName = remoteStreamName;
this.remoteUrl = remoteUrl;
this.size = size;
this.uploadTimestampMillis = uploadTimestampMillis;
this.url = url;
this.videoCodec = videoCodec;
this.videoContainer = videoContainer;
this.videoDuration = videoDuration;
}
/**
*
* @return
* The audioOnly
*/
public boolean isAudioOnly() {
return audioOnly;
}
/**
*
* @param audioOnly
* The audioOnly
*/
public void setAudioOnly(boolean audioOnly) {
this.audioOnly = audioOnly;
}
/**
*
* @return
* The controllerType
*/
public String getControllerType() {
return controllerType;
}
/**
*
* @param controllerType
* The controllerType
*/
public void setControllerType(String controllerType) {
this.controllerType = controllerType;
}
/**
*
* @return
* The displayName
*/
public String getDisplayName() {
return displayName;
}
/**
*
* @param displayName
* The displayName
*/
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
/**
*
* @return
* The encodingRate
*/
public int getEncodingRate() {
return encodingRate;
}
/**
*
* @param encodingRate
* The encodingRate
*/
public void setEncodingRate(int encodingRate) {
this.encodingRate = encodingRate;
}
/**
*
* @return
* The frameHeight
*/
public int getFrameHeight() {
return frameHeight;
}
/**
*
* @param frameHeight
* The frameHeight
*/
public void setFrameHeight(int frameHeight) {
this.frameHeight = frameHeight;
}
/**
*
* @return
* The frameWidth
*/
public int getFrameWidth() {
return frameWidth;
}
/**
*
* @param frameWidth
* The frameWidth
*/
public void setFrameWidth(int frameWidth) {
this.frameWidth = frameWidth;
}
/**
*
* @return
* The id
*/
public int getId() {
return id;
}
/**
*
* @param id
* The id
*/
public void setId(int id) {
this.id = id;
}
/**
*
* @return
* The referenceId
*/
public Object getReferenceId() {
return referenceId;
}
/**
*
* @param referenceId
* The referenceId
*/
public void setReferenceId(Object referenceId) {
this.referenceId = referenceId;
}
/**
*
* @return
* The remoteStreamName
*/
public Object getRemoteStreamName() {
return remoteStreamName;
}
/**
*
* @param remoteStreamName
* The remoteStreamName
*/
public void setRemoteStreamName(Object remoteStreamName) {
this.remoteStreamName = remoteStreamName;
}
/**
*
* @return
* The remoteUrl
*/
public Object getRemoteUrl() {
return remoteUrl;
}
/**
*
* @param remoteUrl
* The remoteUrl
*/
public void setRemoteUrl(Object remoteUrl) {
this.remoteUrl = remoteUrl;
}
/**
*
* @return
* The size
*/
public int getSize() {
return size;
}
/**
*
* @param size
* The size
*/
public void setSize(int size) {
this.size = size;
}
/**
*
* @return
* The uploadTimestampMillis
*/
public int getUploadTimestampMillis() {
return uploadTimestampMillis;
}
/**
*
* @param uploadTimestampMillis
* The uploadTimestampMillis
*/
public void setUploadTimestampMillis(int uploadTimestampMillis) {
this.uploadTimestampMillis = uploadTimestampMillis;
}
/**
*
* @return
* The url
*/
public String getUrl() {
return url;
}
/**
*
* @param url
* The url
*/
public void setUrl(String url) {
this.url = url;
}
/**
*
* @return
* The videoCodec
*/
public String getVideoCodec() {
return videoCodec;
}
/**
*
* @param videoCodec
* The videoCodec
*/
public void setVideoCodec(String videoCodec) {
this.videoCodec = videoCodec;
}
/**
*
* @return
* The videoContainer
*/
public String getVideoContainer() {
return videoContainer;
}
/**
*
* @param videoContainer
* The videoContainer
*/
public void setVideoContainer(String videoContainer) {
this.videoContainer = videoContainer;
}
/**
*
* @return
* The videoDuration
*/
public int getVideoDuration() {
return videoDuration;
}
/**
*
* @param videoDuration
* The videoDuration
*/
public void setVideoDuration(int videoDuration) {
this.videoDuration = videoDuration;
}
}
我创建了一个 retrofit 接口(interface)VideoInterface.class
import retrofit2.Call;导入 retrofit2.http.GET;
/**
* retrofit 2 interface
*/
public interface VideoInterface {
String apiURL = ".....";
@GET(apiURL)
public Call<VideosResponse> listVideos();
}
我创建了一个响应/解析类 VideosResponse.java
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import java.util.ArrayList;
import java.util.List;
/**
*/
public class VideosResponse {
//initalizing the collection
List<VideoInfo> videos;
public VideosResponse() {
videos = new ArrayList<VideoInfo>();
}
//parsing the response
public static VideosResponse parseJSON(String response) {
Gson gson = new GsonBuilder().create();
VideosResponse videosResponse = gson.fromJson(response, VideosResponse.class);
return videosResponse;
}
}
已更新:我终于调用了 API,但无法获取各个元素我知道我应该能够做类似 response.body().getItem().getID().getRendition().getUrl()
的事情 例如,但我没有在自动完成中看到它,如果我写它,我会收到错误。此代码在我的 onResume()
中方法,我注释掉的原因 public static
下面是因为它在 onResume()
中是不允许的
// Creating a simple REST adapter which points the API
// public static
final String BASE_URL = "http://api......";
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
// Creating an instance of our API interface.
VideoInterface service = retrofit.create(VideoInterface.class);
Call<VideosResponse> call = service.listVideos();
call.enqueue(new Callback<VideosResponse>() {
@Override
public void onResponse(Call<VideosResponse> call, Response<VideosResponse> response) {
VideosResponse videoResponse = response.body();
}
@Override
public void onFailure(Call<VideosResponse> call, Throwable t) {
}});
到最后一步似乎一切正常(没有错误),下面的日志给我:
Log.d("Videos ", response.message()); //OK
Log.d("Videos ", String.valueOf(response.isSuccess())); //TRUE
Log.d("Videos ", String.valueOf(response.code())); //200
但我仍然无法获得我需要的字符串。当我打印响应日志时显示响应 VideosResponse videoResponse = response.body();
我收到:VideosResponse@3b8bfaa4,这正常吗?我该如何使用它?是否建议使用 parcelable?它会改变什么吗?
最佳答案
您需要向我们展示 json 响应,或者您也可以自行计算。基本上,对象属性名称必须与 json 属性相匹配,您可以调试以查看元素是否正在接收值,如果没有则添加SerializedName 注释。从那里开始,有两种可能性,要么您拥有一个对象或一个数组。您可以为其进一步创建 POJO 或创建类型为 List 的属性。
关于java - 实现后的 Retrofit 2(在 Android 中),我的 JSON 元素在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35962112/
在开发中的网页上,我在 IE 上遇到此错误 element = $(element); 此代码位于prototype.js 预期对象 如何消除此错误。 更新: 现场也使用了 jQuery。 最佳答
我有两个大小相同的嵌套数组: Array1 =[[1, 2], [], [2, 3]] Array2= [[1, 4], [8, 11], [3, 6]] 我需要将它们合并到一个数组中,如下所示: A
我有一些 jQuery 代码,当单击具有特定 ID 的项目时运行。当 ID 是 的一部分时,它就可以工作。元素,但当它位于 中时则不然元素。为什么会这样呢?我想使用 an,因为如果用户关闭了 Ja
Flex-box 规范 3声明 flex 元素不是 block 容器: A flex item establishes a new formatting context for its content
我遇到了一个意想不到的问题。 HTML JS $(function() { var $divs = $('.myDiv'); // create new div not in
我使用 Bootstrap 和 Ember.js 得到了一个无序列表。每个列表项都是一个显示新帖子的链接,每当您单击该链接时,Ember 都会添加类 active默认情况下。我正在使用 Bootstr
我正在尝试让一个函数正常工作,但运气不佳,所以我想向 Stackoverflow 智囊团提出一个新手问题! 基本上,我有一个表单,并且循环遍历所有元素以查看是否存在自定义数据属性。如果存在,则保持该元
我想映射一个可选数组,删除那些 nil 值,并使用另一个函数映射非 nil 值。 我知道我可以通过使用 compactMap 然后使用常规 map 来实现这一点,但我只想遍历数组一次。 我为此实现了一
我如何定位 li 元素,除非它们出现在 之后元素?换句话说,我想针对步骤而不是注释。 我尝试向 OL 添加一个我想从选择中排除的类,但我想出的代码不起作用。 (顺便说一句,重构 html 不是一种选
Warning 1 The element 'system.webServer' has invalid child element 'rewrite'. List of possible eleme
我正在尝试编写一个脚本,该脚本将遍历 HTML 源并创建 DOM 的 JSON 文件,然后使用 d3.js 在 TreeView 中显示该文件。我遇到的问题是不仅希望显示元素(TITLE、P、LI 等
我有以下 HTML 表单:- Option 1 Option 2
我试图在选定的 HTML 元素之后选择下一个具有类名 slider-value 的 span 元素。我尝试了多种解决方案,但没有一个有效。 我可以通过 id 选择它,但我不希望那样做使代码冗余。 $(
如果电子邮件地址无效,我想在屏幕上显示一条消息“请输入有效的电子邮件地址”。 body 元素的innerHTML 语句工作正常,但我用于p 元素的innerHTML 语句不起作用。 有一次,当我测试它
以下 jQuery 代码调用 ul 元素,查找元素内的前 三个 li 列表项,并隐藏剩余的 li 项目。然后,它附加一个 li 元素,其中显示“显示更多...”,并且在单击时显示之前隐藏的列表项。 (
我问了a question早些时候关于将编辑/删除链接与 h1 元素内联的最佳方法。我能够通过给出的答案实现这一点,但我现在有额外的要求,我需要在 h1 下方显示一个段落并编辑/删除链接。 到目前为止
我使用 MVC 4 和 knockout.js 库版本 2.1.0 显示从服务器检索到的大量文件的表中的以下摘录。 0)"> 正在正确检索数据,
我创建了一个脚本,该脚本在鼠标悬停在父容器上时激活,并且应该将其子元素移离鼠标。我目前已经让它工作了,但是代码的某些部分似乎与 REACT 代码应该是什么样子相矛盾。特别是两个部分。 我在渲染函数中使
我是 JS 新手,正在尝试理解项目 https://github.com/tastejs/todomvc 的代码 请参阅屏幕截图,我尝试对 button X 以及其父元素 div 设置断点,但在这两种
例如,假设有一个带有奇特颜色的标记: Something written here 使用 Visual Studio 2017 和 MVC 5 元素,有没有办法检查和定位当前应用了哪些样式,以及负责它
我是一名优秀的程序员,十分优秀!