我正在使用改造来从网上获取数据。现在我的问题是我必须得到一个gziped文件,并且改装需要某种标题,我不知道如何正确实现,显然。我对此进行了研究,但似乎没有任何帮助,因为大多数开发人员都在使用json。
这是我正在尝试做的事情:
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("this is my baseurl")
.addConverterFactory(SimpleXmlConverterFactory.create())
.build();
和我的界面:
public interface RestAPI {
@GET("main_data1.gz")
Call<Meritum> getData();
@GET("terms1_EN.gz")
Call<MeritumTerms> getTerms();
@GET
Call<GameResults> getResults(@Url String url);
}
所以我试图获得那个gziped文件,我总是得到这样的回复:
那么我需要添加什么才能让改造识别出gzip文件?
答案 0 :(得分:4)
您不应指定任何标题。
我构建了一个迷你服务器,只响应以下XML gzipped:
<task>
<id link="http://url-to-link.com/task-id">1</id>
<title>Retrofit XML Converter Blog Post</title>
<description>Write blog post: XML Converter with Retrofit</description>
<language>de-de</language>
</task>
运行服务器后,我可以使用curl
:
curl http://localhost:1337/ -v --compressed
我可以正确地看到XML,服务器会响应以下标题:
Content-Encoding: gzip
Content-Type: application/xml; charset=utf-8
知道服务器响应了一个gzipped响应,现在我尝试让它在Android中运行:
我在build.gradle
中使用以下内容:
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile ('com.squareup.retrofit2:converter-simplexml:2.1.0') {
exclude group: 'xpp3', module: 'xpp3'
exclude group: 'stax', module: 'stax-api'
exclude group: 'stax', module: 'stax'
}
这是改装实例配置:
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(SimpleXmlConverterFactory.create())
.build();
这是界面:
public interface MyApiEndpointInterface {
@GET("/")
Call<Task> getInfo();
}
这是我的Task
课程:
@Root(name = "task")
public class Task {
@Element(name = "id")
private long id;
@Element(name = "title")
private String title;
@Element(name = "description")
private String description;
@Element(name = "language")
private String language;
@Override
public String toString() {
return "Task{" +
"id=" + id +
", title='" + title + '\'' +
", description='" + description + '\'' +
", language='" + language + '\'' +
'}';
}
}
我可以通过执行以下操作来确认它是否有效:
call.enqueue(new Callback<Task>() {
@Override
public void onResponse(Call<Task> call, Response<Task> response) {
if (response.isSuccessful()) {
Log.d("MainActivity", response.body() + "");
...
答案 1 :(得分:2)
如果其他人有这个问题,他可以参考下面给我工作的链接
Retrofit: how to parse GZIP'd response without Content-Encoding: gzip header