Я пытаюсь отправить HTTP-запрос с помощью Retrofit 2 для Android, запрос должен получить PDF-файл в ответ. После отправки запроса этот файл PDF должен быть загружен на устройство пользователя в фоновом режиме.
Я пытался использовать учебники для этого, но безуспешно.
Вот мой GetFileApi :
@GET("index.php/get-file")
Call<ResponseBody> getPDF(@Header("authorization") String token ,@Body String Id);
Вот мой ServiceGenerator класс:
public class ServiceGenerator {
public static final String API_BASE_URL = "https://url/";
private static OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
private static Retrofit.Builder builder =
new Retrofit.Builder()
.baseUrl(API_BASE_URL)
.addConverterFactory(GsonConverterFactory.create());
public static <S> S createService(Class<S> serviceClass){
Retrofit retrofit = builder.client(httpClient.build()).build();
return retrofit.create(serviceClass);
}
}
Вот моя Функция :
private void downloadFile(){
GetFileAPI apiInterface = ServiceGenerator.createService(GetFileAPI.class);
Call<ResponseBody> call = apiInterface.getPDF(token, id);
call.enqueue(new Callback<ResponseBody>() {
@Override
public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
if (response.isSuccessful()){
boolean writtenToDisk = writeResponseBodyToDisk(response.body());
Log.d("File downloaded! ", String.valueOf(writtenToDisk));
}
}
@Override
public void onFailure(Call<ResponseBody> call, Throwable t) {
}
});
}
private boolean writeResponseBodyToDisk(ResponseBody body) {
try {
// todo change the file location/name according to your needs
File futureStudioIconFile = new File(getExternalFilesDir(null) + File.separator + "download.pdf");
InputStream inputStream = null;
OutputStream outputStream = null;
try {
byte[] fileReader = new byte[4096];
long fileSize = body.contentLength();
long fileSizeDownloaded = 0;
inputStream = body.byteStream();
outputStream = new FileOutputStream(futureStudioIconFile);
while (true) {
int read = inputStream.read(fileReader);
if (read == -1) {
break;
}
outputStream.write(fileReader, 0, read);
fileSizeDownloaded += read;
Log.d("File Download: " , fileSizeDownloaded + " of " + fileSize);
}
outputStream.flush();
return true;
} catch (IOException e) {
return false;
} finally {
if (inputStream != null) {
inputStream.close();
}
if (outputStream != null) {
outputStream.close();
}
}
} catch (IOException e) {
return false;
}
}
Я получаю эту ошибку , хотя этоВероятно, не единственная причина, почему приложение не работает должным образом. Необходимо отправить токен и id , токен в @ Header и идентификатор в @. Кузов в запросе.
java.lang.IllegalArgumentException: Non-body HTTP method cannot contain @Body.