温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Android开发中利用Retrofit如何将图文上传到服务器

发布时间:2020-12-01 16:27:22 来源:亿速云 阅读:262 作者:Leah 栏目:移动开发

Android开发中利用Retrofit如何将图文上传到服务器?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

前言:现在大多数的项目中都涉及图片+文字上传了,下面请详见实现原理:

开发环境:AndroidStudio

1.引入依赖:

compile 'com.squareup.retrofit2:retrofit:2.1.0'  

2.网络权限:

<uses-permission android:name="android.permission.INTERNET" />  

3.创建上传对象OkHttpClient :

private static final OkHttpClient client = new OkHttpClient.Builder()
   .addInterceptor(new Interceptor() {
    @Override
    public Response intercept(Chain chain) throws IOException {
     Request request = chain
       .request()
       .newBuilder()
       .build();
     return chain.proceed(request);
    }
   })
   .readTimeout(10, TimeUnit.SECONDS)//设置读取超时时间
   .writeTimeout(10, TimeUnit.SECONDS)//设置写的超时时间
   .connectTimeout(15, TimeUnit.SECONDS)//设置连接超时时间
   .build();

4.上传图片的公有方法:

private synchronized final static void uploadImgAndParameter(Map<String, Object> map, String url,
   final UIDataListener listener) {
  // mImgUrls为存放图片的url集合
  MultipartBody.Builder builder = new MultipartBody.Builder().setType(MultipartBody.FORM);
  if (null != map) {
   for (Map.Entry<String, Object> entry : map.entrySet()) {
    if (entry.getValue() != null) {
     if (entry.getValue() instanceof File) {
      File f = (File) entry.getValue();
      builder.addFormDataPart(entry.getKey(), f.getName(), RequestBody.create(MEDIA_TYPE_PNG, f));
     } else {
      builder.addFormDataPart(entry.getKey(), entry.getValue().toString());
     }
    }
   }
  }
  //创建RequestBody
  RequestBody body = builder.build();

//  MultipartBody requestBody = builder.build();
  //构建Request请求
  final Request request = new Request.Builder()
    .url(url)//地址
    .post(body)//添加请求体
//    .post(requestBody)//添加请求体
    .build();
  client.newCall(request).enqueue(new okhttp3.Callback() {
   @Override
   public void onResponse(Call call, final Response response) throws IOException {
    if (response.isSuccessful()) {//判断是否成功
     final String data = response.body().string();//string()仅可调用一次。否则报IllegalStateException: closed异常
     Log.i("file1", "上传照片成功-->" + data);
     onSuccess(listener, data);
     call.cancel();//上传成功取消请求释放内存
    }
   }
   @Override
   public void onFailure(Call call, final IOException e) {
    Log.i("file2", "上传失败-->" + e.getMessage());
    String msg = e.getMessage();
    if (msg == null || msg.equals("timeout")) {
     onError(listener, "网络不稳定请求超时!");
    } else {
     onError(listener, e.getMessage());
    }
    call.cancel();//上传失败取消请求释放内存
   }
  });
 }

//注意:添加手机图片,别忘了添加SD卡权限

5.全部代码:

public class HttpUtil {
  private static final Handler handler = new Handler(Looper.getMainLooper());
  private static final MediaType MEDIA_TYPE_PNG = MediaType.parse("image/*");
  private static final OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(new Interceptor() {
        @Override
        public Response intercept(Chain chain) throws IOException {
          Request request = chain
              .request()
              .newBuilder()
              .build();
          return chain.proceed(request);
        }
      })
      .readTimeout(10, TimeUnit.SECONDS)//设置读取超时时间
      .writeTimeout(10, TimeUnit.SECONDS)//设置写的超时时间
      .connectTimeout(15, TimeUnit.SECONDS)//设置连接超时时间
      .build();
  /**
   * 实例--》添加商品
   */
  public static void addCoupon( int shopperId,String shopperName,
                 File file, final UIDataListener listener) {
    String url = "shopappajx/shopAppCouponAction_saveCoupon.htm";
    Map<String, Object> map = new HashMap<>();
    map.put("shopperId", shopperId);
    map.put("shopperName", shopperName);
    map.put("couponImage", file);//商品图片
    uploadImgAndParameter(map, url, listener);
  }
  //上传图片共有方法
  private synchronized final static void uploadImgAndParameter(Map<String, Object> map, String url,
      final UIDataListener listener) {
    // mImgUrls为存放图片的url集合
    MultipartBody.Builder builder = new MultipartBody.Builder().setType(MultipartBody.FORM);
    if (null != map) {
      for (Map.Entry<String, Object> entry : map.entrySet()) {
        if (entry.getValue() != null) {
          if (entry.getValue() instanceof File) {
            File f = (File) entry.getValue();
            builder.addFormDataPart(entry.getKey(), f.getName(), RequestBody.create(MEDIA_TYPE_PNG, f));
          } else {
            builder.addFormDataPart(entry.getKey(), entry.getValue().toString());
          }
        }
      }
    }
    //创建RequestBody
    RequestBody body = builder.build();

//    MultipartBody requestBody = builder.build();
    //构建Request请求
    final Request request = new Request.Builder()
        .url(url)//地址
        .post(body)//添加请求体
//        .post(requestBody)//添加请求体
        .build();
    client.newCall(request).enqueue(new okhttp3.Callback() {
      @Override
      public void onResponse(Call call, final Response response) throws IOException {
        if (response.isSuccessful()) {//判断是否成功
          final String data = response.body().string();//string()仅可调用一次。否则报IllegalStateException: closed异常
          Log.i("file1", "上传照片成功-->" + data);
          onSuccess(listener, data);
          call.cancel();//上传成功取消请求释放内存
        }
      }
      @Override
      public void onFailure(Call call, final IOException e) {
        Log.i("file2", "上传失败-->" + e.getMessage());
        String msg = e.getMessage();
        if (msg == null || msg.equals("timeout")) {
          onError(listener, "网络不稳定请求超时!");
        } else {
          onError(listener, e.getMessage());
        }
        call.cancel();//上传失败取消请求释放内存
      }
    });
  }
  private final static void onSuccess(final UIDataListener listener, final String data) {
    handler.post(new Runnable() {
      public void run() {
        // 需要在主线程的操作。
        listener.onSuccess(data);
      }
    });
  }
  private final static void onError(final UIDataListener listener, final String msg) {
    if (null != listener) {
      handler.post(new Runnable() {
        public void run() {
          // 需要在主线程的操作。
          listener.onFailure(msg);
        }
      });
    }
  }
  public interface UIDataListener {
   //网络请求成功
    void onSuccess(String data);
   //网络请求失败
    void onFailure(String errorMassage);
  }
}

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI