- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
有一些关于 Retrofit 的内容我没有理解。我在网上关注示例,但无法编译。我能够通过旧学校(即 HttpGet/HttpResoponse)从 RESTful 服务访问数据,所以我知道该服务有效。它返回一堆 EmployeeData(与仅一个 EmployeeData 相对)
在应用程序 gradle 文件中:
dependencies {
...
compile 'com.google.code.gson:gson:2.7'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
...
}
RESTful 服务端点的 url 是: https://com.somewhere/PhoneDirectoryService/api/Employees/
我已经为基本 url 定义了一个字符串:
<string name="https_phone_directory_service_baseurl">https://com.somewherePhoneDirectoryService/api/</string>
界面
public interface EmployeesService {
@GET("Employees.json") // the string in the GET is end part of the endpoint url
public Call<List<EmployeeEndpointResponse>> listEmployees();
}
回应
public class EmployeeEndpointResponse {
private List<EmployeeData> employees; // EmployeeData is a POJO
// public constructor is necessary for collections
public EmployeeEndpointResponse() {
employees = new ArrayList<EmployeeData>();
}
public static EmployeeEndpointResponse parseJSON(String response) {
GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES);
Type collectionType = new TypeToken<List<EmployeeData>>(){}.getType();
Gson gson = gsonBuilder.create();
EmployeeEndpointResponse employeeEndpointResponse = gson.fromJson(response, EmployeeEndpointResponse.class);
return employeeEndpointResponse;
}
}
获取数据
public static boolean getEmployeeData(Context context) {
Resources resources = context.getResources();
URI uri = null;
try {
uri = new URI(resources.getString(R.string.https_phone_directory_service_baseurl));
}
catch (URISyntaxException exception) {
Log.e("getEmployeeData", exception.toString());
}
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(uri.toString())
.addConverterFactory(GsonConverterFactory.create())
.build();
Call<List<EmployeeEndpointResponse>> call = service.listEmployees();
EmployeesService service = retrofit.create(EmployeesService.class);
// this does not compile
// error: <anonymous com.somewhere.utilities.Utilities$1> is not
// abstract and does not override abstract method
// onFailure(Call<List<EmployeeEndpointResponse>>,Throwable) in Callback
call.enqueue(new Callback<List<EmployeeEndpointResponse>>() {
@Override
public void onResponse(Response<List<EmployeeEndpointResponse>> response) {
List<EmployeeEndpointResponse> myList = response.body();
// Successfull request, do something with the retrieved messages
}
@Override
public void onFailure(Throwable t) {
// Failed request.
}
});
// so I tried this which gives compile error
// retrofit2.Callback<java.util.List
// <com.somewhere.gson.EmployeeEndpointResponse>>)
// in Call cannot be applied to anonymous retrofit2.Callback
// <com.somewhere.gson.EmployeeEndpointResponse>)
call.enqueue(new Callback<EmployeeEndpointResponse>() {
@Override
public void onResponse(Call<EmployeeEndpointResponse> call, Response<EmployeeEndpointResponse> response) {
// handle response here
EmployeeEndpointResponse employeeEndpointResponse = (EmployeeEndpointResponse)response.body();
}
@Override
public void onFailure(Call<EmployeeEndpointResponse> call, Throwable t) {
}
});
}
我需要做什么?
数据看起来像:
[
{"Name":"Smith, Ken J.",
"Cell":"",
"EmailAddress":"Ken.Smith@somewhere.com",
"Location":"West",
"Phone":"555-555-5555",
"Address":"PO Box 555 5555 Del Norte",
"City":"Jackson",
"State":"WY",
"Zip":"85555",
"Latitude":42.24976,
"Longitude":-107.82171},
{"Name":"Cox, Daniel B.",
"Cell":"",
"EmailAddress":"daniel.cox@somewhere.com",
"Location":"West",
"Phone":"(555) 555-5516",
etc ...}
]
最佳答案
添加依赖
dependencies {
compile 'com.squareup.okhttp3:okhttp:3.2.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.2.0'
}
生成http客户端
private static OkHttpClient getOkHttpClient(){
HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
logging.setLevel(HttpLoggingInterceptor.Level.NONE);
OkHttpClient okClient = new OkHttpClient.Builder()
.addInterceptor(logging)
.build();
return okClient;
}
获取数据
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(YOUR_URL)
.client(getOkHttpClient())
.addConverterFactory(GsonConverterFactory.create())
.build();
return retrofit;
EmployeesService service = retrofit.create(EmployeesService.class);
Call<EmployeeEndpointResponse> call = service.listEmployees();
call.enqueue(new Callback<EmployeeEndpointResponse>() {
@Override
public void onResponse(Call<EmployeeEndpointResponse> call, Response<EmployeeEndpointResponse> response) {
EmployeeEndpointResponse employeeEndpointResponse = response.body();
//manage your response
}
@Override
public void onFailure(Call<EmployeeEndpointResponse> call, Throwable t) {
}
});
解析 JSON
您的 POJO 不需要任何其他方法来解析 JSON。只需使用 http://www.jsonschema2pojo.org/ 生成带有 GSON 注释的代码
关于android - 如何在 Retrofit 中获取事物列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39730174/
Redis的事务是什么 Redis 事务的本质是一组命令的集合。事务支持一次执行多个命令,一个事务中所有命令都会被序列化。在事务执行过程,会按照顺序串行化执行队列中的命令,其他客户端提交的命令请求不会
我刚找到这个: a = (None,) print (a is True) print (a is False) print (a == True) print (a == False) print
我尝试将 FCM 与 Android Things 结合使用。我已经导入了 google json,在 list 中进行了更改,将应用程序订阅了主题,但我没有收到推送消息。我唯一得到的是来自服务器的
嘿。我有一个客户端服务器应用程序。服务器监听某个端口,并为每个客户端生成一个管理它的线程。这是基于套接字的,类似于 this但是客户端在 Swing 接口(interface)启动时连接,它会不时调用
您如何通过 ADB for Android Things 截取屏幕截图?我试过了: adb shell screencap -p /sdcard/screen.png adb pull /sdcard
我在理解此代码中的“Callable”时遇到了一些麻烦。我的老师笔记中没有太多细节。 template double averageTime(int iterations, Call
我有一个运行 Android Things 的 Raspberry Pi 3。为简单起见,假设它仅旋转步进电机。 为了再次简化事情,步进电机通过逐个线圈地告诉哪些线圈充电和哪些不充电来旋转。在 Ras
我一直觉得在 WPF 中设计表单布局就像设计网站布局一样。有没有一种工具可以让我直观地设置东西?我主要来自 WinForms 环境,花 2 个小时来布置表单设计并让它不完全按照您想要的方式出现是很烦人
我想在我的应用程序中重用 UITableViewCell,但我收到此错误:在隐式展开可选值时意外发现 nil。 我发现这是因为 UITableViewCell 中的 UI 东西是 nil,所以我的应用
我明天有考试,我想了解线性排序是什么样的,但是当我在谷歌上查找它时,我得到插入排序是一回事吗? 最佳答案 所有 C++ 标准保证的是 std::sort 是 O(N·log(N)。 关于c++ - 在
假设我有一个名为 Poem 的类(class)。 class Poem{ virtual void recite() = 0; } 我有数百个描述子类的 .cpp 和 .hpp 文件,如下所示
我们的主页有我们组织的 JSON-LD。我们的产品页面也应该有那 block 代码吗? 如果 Google 抓取我们的产品页面之一并找到 @type: Organization 和 @type: Pr
我正在使用 PHP 来使用不属于我的服务。该服务返回的内容几乎但不完全不同于 JSON(帽子提示,HGG)。 即,在最简单的形式中,它们看起来像这样 {a: 8531329} 通过json_decod
标题很冗长,可能令人困惑,但我不知道如何让它变得更好......我希望能够访问数组列表中的值并将其打印出来。 我有一个名为 ThingBagInterface 的接口(interface)。这个 Th
我通过调用成功显示了 Android 日期设置: startActivityForResult(new Intent(android.provider.Settings.ACTION_DATE_SET
这个问题在这里已经有了答案: Is there a simpler way to check multiple values against one value in an if-statement
我是一名优秀的程序员,十分优秀!