溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android開發(fā)中利用Retrofit如何將圖文上傳到服務(wù)器

發(fā)布時(shí)間:2020-12-01 16:27:22 來源:億速云 閱讀:275 作者:Leah 欄目:移動(dòng)開發(fā)

Android開發(fā)中利用Retrofit如何將圖文上傳到服務(wù)器?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

前言:現(xiàn)在大多數(shù)的項(xiàng)目中都涉及圖片+文字上傳了,下面請(qǐng)?jiān)斠妼?shí)現(xiàn)原理:

開發(fā)環(huán)境:AndroidStudio

1.引入依賴:

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

2.網(wǎng)絡(luò)權(quán)限:

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

3.創(chuàng)建上傳對(duì)象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)//設(shè)置讀取超時(shí)時(shí)間
   .writeTimeout(10, TimeUnit.SECONDS)//設(shè)置寫的超時(shí)時(shí)間
   .connectTimeout(15, TimeUnit.SECONDS)//設(shè)置連接超時(shí)時(shí)間
   .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());
     }
    }
   }
  }
  //創(chuàng)建RequestBody
  RequestBody body = builder.build();

//  MultipartBody requestBody = builder.build();
  //構(gòu)建Request請(qǐng)求
  final Request request = new Request.Builder()
    .url(url)//地址
    .post(body)//添加請(qǐng)求體
//    .post(requestBody)//添加請(qǐng)求體
    .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()僅可調(diào)用一次。否則報(bào)IllegalStateException: closed異常
     Log.i("file1", "上傳照片成功-->" + data);
     onSuccess(listener, data);
     call.cancel();//上傳成功取消請(qǐng)求釋放內(nèi)存
    }
   }
   @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, "網(wǎng)絡(luò)不穩(wěn)定請(qǐng)求超時(shí)!");
    } else {
     onError(listener, e.getMessage());
    }
    call.cancel();//上傳失敗取消請(qǐng)求釋放內(nèi)存
   }
  });
 }

//注意:添加手機(jī)圖片,別忘了添加SD卡權(quán)限

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)//設(shè)置讀取超時(shí)時(shí)間
      .writeTimeout(10, TimeUnit.SECONDS)//設(shè)置寫的超時(shí)時(shí)間
      .connectTimeout(15, TimeUnit.SECONDS)//設(shè)置連接超時(shí)時(shí)間
      .build();
  /**
   * 實(shí)例--》添加商品
   */
  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());
          }
        }
      }
    }
    //創(chuàng)建RequestBody
    RequestBody body = builder.build();

//    MultipartBody requestBody = builder.build();
    //構(gòu)建Request請(qǐng)求
    final Request request = new Request.Builder()
        .url(url)//地址
        .post(body)//添加請(qǐng)求體
//        .post(requestBody)//添加請(qǐng)求體
        .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()僅可調(diào)用一次。否則報(bào)IllegalStateException: closed異常
          Log.i("file1", "上傳照片成功-->" + data);
          onSuccess(listener, data);
          call.cancel();//上傳成功取消請(qǐng)求釋放內(nèi)存
        }
      }
      @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, "網(wǎng)絡(luò)不穩(wěn)定請(qǐng)求超時(shí)!");
        } else {
          onError(listener, e.getMessage());
        }
        call.cancel();//上傳失敗取消請(qǐng)求釋放內(nèi)存
      }
    });
  }
  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 {
   //網(wǎng)絡(luò)請(qǐng)求成功
    void onSuccess(String data);
   //網(wǎng)絡(luò)請(qǐng)求失敗
    void onFailure(String errorMassage);
  }
}

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI