Próbuję wykonać żądanie wielostronicowego POST za pomocą Retrofit2, gdzie przesyłam do interfejsu API niestandardowy plik.Retrofit. wyjątek java.net.ProtocolException: oczekiwany * bajtów, ale odebrano *
losowo zawiedzie on z tego wyjątku:
W/System.err: java.net.ProtocolException: expected 154 bytes but received 634
Czy ktoś mógłby umieścić trochę światła na to?
To jest mój kod w interfejsie:
@Multipart
@POST("recordings/{id}/{rec_id}/")
Call<ResponseBody> uploadRecording(@Path("id") String id, @Path("rec_id") String rec_id, @Part MultipartBody.Part bleFile);
W konstruktorze:
public ApiConnectionManager(Context con){
Gson gson = new GsonBuilder()
.setDateFormat("yyyy-MM-dd'T'HH:mm:ssZ")
.create();
OkHttpClient.Builder client = new OkHttpClient.Builder();
HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor();
loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
client.addInterceptor(loggingInterceptor);
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(con.getResources().getString(R.string.api_url)) // API url is hidden
.addConverterFactory(GsonConverterFactory.create(gson))
.client(client.build())
.build();
this.companyAPI = retrofit.create(CompanyAPI.class);
}
iw sposobie Dodano:
private void uploadFile(String id, final File bleFile) {
MediaType MEDIA_TYPE = MediaType.parse("multipart/mixed");
RequestBody requestBody = RequestBody.create(MEDIA_TYPE,bleFile);
MultipartBody.Part partFile = MultipartBody.Part.createFormData("file", bleFile.getName(), requestBody);
String recordingId = bleFile.getName().replace(".BLE","");
Call<ResponseBody> call = companyAPI.uploadRecording(id, recordingId, partFile);
call.enqueue(new Callback<ResponseBody>() {
@Override
public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
Log.d(TAG+"-Upload "+bleFile.getName(),response.message());
}
@Override
public void onFailure(Call<ResponseBody> call, Throwable t) {
Log.d(TAG,"FAILED");
t.printStackTrace();
}
});
}
użycie adnotacji "@PartMap" zamiast "@Part" rozwiązało problem. – kike
Mógłbyś proszę dodać call.enqueue() do tej odpowiedzi, aby osoby z tym samym problemem mogły mieć działający fragment kodu? – kike
@kike Zmieniłem swoją odpowiedź, a także dodałem sposób wysyłania ciągów poza plikami. –