我正在尝试从改造API中提取一些数据,它的JSON如下所示:
l
然后我尝试获取如下特定数据:
型号:
Ksets(g,:)
Response= [1 1 0 1 1;
1 0 1 1 0]; %GxM
ApiService:
Responsecorrectmy=zeros(G, M);
for x=1:G
for c=1:l
Responsecorrectmy(x,:)=Responsecorrectmy(x,:)+...
ismember(A,Ksets(x,(c-1)*N+1:c*N), 'rows').';
end
end
我该如何解决?我尝试过,但无法查看数据。 我需要为此创建一个列表吗? 我该如何解决?我尝试过,但无法查看数据。 我需要为此创建一个列表吗?
答案 0 :(得分:1)
将您的ArrayList<Movie>
更改为Movie
。
还创建另一个类:
public class DataResponse {
public Data data;
}
并将您的Retrofit方法更改为此:
@GET("movie/{id}")
Call<DataResponse> obtainProfile(@Path("id") int id);