【问题标题】:How to send image and text at the same time using retrofit如何使用改造同时发送图像和文本
【发布时间】:2016-09-18 14:16:31
【问题描述】:

我想使用改造同时发送这个 Postdata 和图像文件。

PostDataPoint

public class PostData implements Serializable {
    @Expose
    private String text;
    @Expose
    private Point point;
}
public class Point implements Serializable {
    @Expose
    private double longitude;
    @Expose
    private double latitude;
}

PostApiService

public interface PostApiService {

    @Multipart
    @POST("posts/")
    Call<ResponseBody> uploadFile (@Part MultipartBody.Part part, @Body PostData postData);
}

我从这些代码中获取图像 uri,我将使用它。它用作 returnUri。 你可以考虑这个。

代码:

view.findViewById(R.id.btn_post).setOnClickListener(new View.OnClickListener() {
    @Override
    public void PostImageAndData(View view) {

        Bitmap bitmap = null;
        try {
            bitmap = getBitmapFromUri(returnUri); #this method is to make Bitmap from Uri
        } catch (IOException e) {
            e.printStackTrace();
        }
        File imageFile = null;
        try {
            imageFile = createFileFromBitmap(bitmap); #this method is to make File from Bitmap
        } catch (IOException e) {
            e.printStackTrace();
        }

        OkHttpClient client = new OkHttpClient();
        OkHttpClient.Builder builder = new OkHttpClient.Builder();
        client = builder.build();
        Retrofit retrofit = new Retrofit.Builder()
                .client(client)
                .addConverterFactory(GsonConverterFactory.create())
                .baseUrl(Constants.HTTP.BASE_URL)
                .build();

        PostApiService postApiService = retrofit.create(PostApiService.class);
        RequestBody requestFile =
                RequestBody.create(MediaType.parse("multipart/form-data"), imageFile);
        MultipartBody.Part body =
                MultipartBody.Part.createFormData("image", makeImageFileName(), requestFile); #this method(makeimageFileName()) is for custom filename 
        Point mpoint = new Point(13, 15);
        PostData postData = new PostData("hello", mpoint);

        Call<ResponseBody> call = postApiService.uploadFile(body, postData);
        call.enqueue(new Callback<ResponseBody>() {
            @Override
            public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
                Toast.makeText(getContext(), "success?", Toast.LENGTH_LONG).show();
            }
            @Override
            public void onFailure(Call<ResponseBody> call, Throwable t) {
            }
        });
    }
});

如果我在 PostApiService 上使用@Body PostData postData,错误是java.lang.IllegalArgumentException: @Body parameters cannot be used with form or multi-part encoding. (parameter #2)

如果我在 PostApiService 上使用 @Part PostData postData,错误是 java.lang.IllegalArgumentException: @Part annotation must supply a name or use MultipartBody.Part parameter type. (parameter #2)

那么,我该怎么办?

拜托,你能帮帮我吗?

【问题讨论】:

    标签: android retrofit okhttp


    【解决方案1】:

    昨天我遇到了同样的问题,我已经解决了。

    它直接说两种不同的格式是不允许的。 java.lang.IllegalArgumentException:@Body 参数不能与表单或多部分编码一起使用。 (参数#2)

    您只需要以Part的形式发送所有数据。

    @Multipart
    @POST("/api/Accounts/editaccount")
    Call<User> editUser (@Part("Authorization") String authorization,@Part("file\"; filename=\"pp.png\" ") RequestBody file , @Part("FirstName") RequestBody fname, @Part("Id") RequestBody id);
    

    类似的东西。

    谢谢,希望对你有帮助。

    【讨论】:

    • retrofit2 对我来说比我预期的更难使用。谢谢你。萨维恩
    • 我也是,直到昨天 :) 别担心
    • @Saveen 我需要你在这里...面对多部分的问题 --> stackoverflow.com/questions/63149093/…
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-11-02
    • 2016-10-31
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多