我有我的AndroidJavaREST API代码与另一个使用JSON对象层次结构的REST API完美配合(又名列表-托架-对象1-托架对象2)。现在我转向一个简化的API(谷歌地图时区——只有一个简单的对象,有5个字段),但我不知道如何将谷歌数据放入我的对象。
我的状态代码是200,我可以在我的logcat中看到googlemaps输出/JSON,但我的对象是空的。我读了这篇文章“0改型2:response.body()为空,但状态代码为200 2”,我确信我也有同样的问题,但我不知道如何调整对象模型来修复它。这是我的东西。。。
1-我要点击的API/URL:https://maps.googleapis.com/maps/api/timezone/json?location=39.6034810,-119.6822510
2-API/URL返回什么(从我的LogCat)
D/OkHttp: {
D/OkHttp: "dstOffset" : 0,
D/OkHttp: "rawOffset" : -28800,
D/OkHttp: "status" : "OK",
D/OkHttp: "timeZoneId" : "America/Los_Angeles",
D/OkHttp: "timeZoneName" : "Pacific Standard Time"
D/OkHttp: }
3-显示对象为空的Logcat
Log.e(" main ", " apt " + response.body().getResults());
E/ main: apt null
4.通话程序
ApiInterface apiService = ApiClient.getClient(1).create(ApiInterface.class);
Call<ApiTimes> call = apiService.getTime(location,epoch,GOOG_TZ_KEY);
call.enqueue(new Callback<ApiTimes>() {
@Override
public void onResponse(Call<ApiTimes> call, Response<ApiTimes> response) {
int statusCode = response.code();
Log.e(" main ", " apt " + response.body().getResults());
}
@Override
public void onFailure(Call<ApiTimes> call, Throwable t) {
Log.e(" getFS ", t.toString());
}
});
5-对象。
public class ApiTime {
@SerializedName("apitime")
private ApiTime apitime;
@SerializedName("dstOffset")
@Expose
private Long dstOffset;
@SerializedName("rawOffset")
@Expose
private Long rawOffset;
@SerializedName("status")
@Expose
private String status;
@SerializedName("timeZoneId")
@Expose
private String timeZoneId;
@SerializedName("timeZoneName")
@Expose
private String timeZoneName;
public ApiTime(Long dstOffset, Long rawOffset, String status, String timeZoneId, String timeZoneName) {
this.dstOffset = dstOffset ;
this.rawOffset = rawOffset ;
this.status = status ;
this.timeZoneId = timeZoneId ;
this.timeZoneName = timeZoneName ;
}
public ApiTime getResults() {
return apitime;
}
public void setResults(ApiTime apitimes) {
this.apitime = apitime;
}
public Long getDstOffset() {
return dstOffset;
}
public void setDstOffset(Long dstOffset) {
this.dstOffset = dstOffset;
}
public Long getRawOffset() {
return rawOffset;
}
public void setRawOffset(Long rawOffset) {
this.rawOffset = rawOffset;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getTimeZoneId() {
return timeZoneId;
}
public void setTimeZoneId(String timeZoneId) {
this.timeZoneId = timeZoneId;
}
public String getTimeZoneName() {
return timeZoneName;
}
public void setTimeZoneName(String timeZoneName) {
this.timeZoneName = timeZoneName;
}
@Override
public String toString() {
return "ApiTime{" +
"dstOffset=" + dstOffset +
", rawOffset=" + rawOffset +
", status='" + status + '\'' +
", timeZoneId='" + timeZoneId + '\'' +
", timeZoneName='" + timeZoneName + '\'' +
'}';
}
}
6-以下是两个调用例程:
public class ApiClient {
public static final String URL0 = blah blah
public static final String URL1 = "https://maps.googleapis.com/maps/api/timezone/";
private static Retrofit retrofit = null;
public static String BASE_URL = "www.google.com";
public static Retrofit getClient(int url) {
BASE_URL = URL0;
if (url == 1){
BASE_URL = URL1;
}
//The following block of code generates OkHttpClient loggging to LogCat.
//Only use if debugging.
OkHttpClient.Builder client = new OkHttpClient.Builder();
HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor();
loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
client.addInterceptor(loggingInterceptor);
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.client(client.build())
.addConverterFactory(GsonConverterFactory.create())
.build();
//Retrofit retrofit = new Retrofit.Builder()
// .baseUrl(BASE_URL)
// .addConverterFactory(GsonConverterFactory.create())
// .build();
return retrofit;
}
}
public interface ApiInterface {
@GET("json")
Call<ApiTimes> getTime(@Query("location") String location, @Query("timestamp") String timestamp, @Query("key") String key);
}
看起来你应该使用ApiTime
而不是ApiTimes
我在日志中的json中没有看到@SerializedName(“apitimes”)
public interface ApiInterface {
@GET("json")
Call<ApiTime> getTime(@Query("location") String location, @Query("timestamp") String timestamp, @Query("key") String key);
}
-
ApiInterface apiService = ApiClient.getClient(1).create(ApiInterface.class);
Call<ApiTime> call = apiService.getTime(location, epoch, GOOG_TZ_KEY);
call.enqueue(new Callback<ApiTime>() {
@Override
public void onResponse(Call<ApiTime> call, Response<ApiTime> response) {
int statusCode = response.code();
Log.e("main", "apt " + response.body());
}
@Override
public void onFailure(Call<ApiTime> call, Throwable t) {
Log.e("getFS ", t.toString());
}
});
-
public class ApiTime {
@SerializedName("dstOffset")
private Long dstOffset;
@SerializedName("rawOffset")
private Long rawOffset;
@SerializedName("status")
private String status;
@SerializedName("timeZoneId")
private String timeZoneId;
@SerializedName("timeZoneName")
private String timeZoneName;
// getters here
}
我在Android中通过改装调用RestAPI,每一个其他请求工作正常,并给我有效的响应,但此请求加载有点慢,需要时间加载,但当我得到响应其代码为200,但响应体为空等了一段时间后。 这是OkkHttp客户端,它的加载也扩展到加载json,因为它很慢。 在这个方法中调用API 这是我的反应体。。。。有人能帮我解释一下为什么我在这里得到了空身体吗。这是回应 这是Mode类产品。 }
问题内容: 我编写了一个小 android 应用程序,该应用程序应显示智能手机的当前位置(最近的位置)。尽管我复制了示例代码,并尝试了其他几种解决方案,但每次似乎都有相同的错误。我的应用程序包含一个按钮。按下按钮应 记录 经度和纬度,但仅记录。 这是 MainActivity.java : 我还在清单文件中使用过。我真的很感谢一个解释的真正含义。 问题答案: 对于我的华为设备,以下帮助: 拨号:
我想知道如何将response.body()作为参数传递,以便进一步处理它。因为现在我只能将其传递给Toast或text View的setText,它工作得很好。但是如果我尝试将其传递给将其保存为SharedPrefs或类似的函数,它只是传递一个空对象。我不明白为什么第一个有效,但第二个无效,有什么区别? 我的JSON响应正文如下所示: 我的Pojo是这样的: 我执行调用的函数(在点击登录按钮后调
问题内容: 大家好,我在android 4.3中有此代码,我现在正在使用改造,但是服务器向我抛出一条错误消息“输入内容不是有效的Base-64字符串,因为它包含非base 64字符,两个以上的填充字符,或填充字符中的非法字符。” 当我使用改造时 问题答案: 对于常规对象类型(包括),翻新将使用其来序列化值。在这种情况下,默认情况下会使用Gson将正文序列化为JSON。 为了上传要使用Base64编
我如何使用改造来解析这个?我得到错误BEGIN_OBJECT但却是BEGIN_ARRAY 现在,我是这样分析的… 下面是adapter类 下面是接口RetroInterface.class 这是我在主要活动中的称呼 下面是json响应
我正在使用Registfit在我的web服务器中发出一个POST请求。