| | |
| | | |
| | | import com.dayu.pipirrapp.MyApplication; |
| | | import com.dayu.pipirrapp.bean.net.CodeResult; |
| | | import com.dayu.pipirrapp.bean.net.UplodFileState; |
| | | import com.dayu.pipirrapp.bean.net.WeatherResponse; |
| | | import com.dayu.pipirrapp.net.subscribers.BaseProgressSubscriber; |
| | | import com.dayu.pipirrapp.net.subscribers.CodeListener; |
| | | import com.dayu.pipirrapp.net.subscribers.ProgressSubscriber; |
| | | import com.dayu.pipirrapp.net.subscribers.SubscriberListener; |
| | | import com.dayu.pipirrapp.net.upload.UploadFileListener; |
| | | import com.dayu.pipirrapp.utils.MapJpgUtils; |
| | | import com.dayu.pipirrapp.utils.MyJsonParser; |
| | | |
| | |
| | | import io.reactivex.rxjava3.disposables.CompositeDisposable; |
| | | import io.reactivex.rxjava3.functions.Function; |
| | | import io.reactivex.rxjava3.schedulers.Schedulers; |
| | | import okhttp3.MediaType; |
| | | import okhttp3.MultipartBody; |
| | | import okhttp3.RequestBody; |
| | | import okhttp3.ResponseBody; |
| | | import retrofit2.Call; |
| | | import retrofit2.Callback; |
| | | import retrofit2.Response; |
| | | |
| | | |
| | | /** |
| | |
| | | return false; // 无网络连接 |
| | | } |
| | | |
| | | /** |
| | | * 上传文件 |
| | | * |
| | | * @param context |
| | | * @param file |
| | | * @param listener |
| | | */ |
| | | public void uploadFile(final Context context, final UplodFileState file, final UploadFileListener listener) { |
| | | |
| | | // 创建 RequestBody,用于封装构建RequestBody |
| | | RequestBody requestFile = |
| | | RequestBody.create(MediaType.parse("multipart/form-data"), file.getFile()); |
| | | // MultipartBody.Part 和后端约定好Key,这里的partName是用image |
| | | MultipartBody.Part body = MultipartBody.Part.createFormData("file", file.getFile().getName(), requestFile); |
| | | // 添加描述 |
| | | String descriptionString = "hello, 这是文件描述"; |
| | | RequestBody description = RequestBody.create(MediaType.parse("multipart/form-data"), descriptionString); |
| | | apiService.uploadFile(description, body).enqueue(new Callback<BaseResponse>() { |
| | | @Override |
| | | public void onResponse(Call<BaseResponse> call, Response<BaseResponse> response) { |
| | | if (response.body() != null) { |
| | | if (response.body().isSuccess()) { |
| | | file.setState(1); |
| | | file.setUrl(response.body().getMsg()); |
| | | listener.onBack(file); |
| | | } else { |
| | | if (file.getNumber() <= uplodFilerepeatSize) { |
| | | file.setNumber(file.getNumber() + 1); |
| | | file.setState(2); |
| | | uploadFile(context, file, listener); |
| | | } else { |
| | | listener.onBack(file); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void onFailure(Call<BaseResponse> call, Throwable t) { |
| | | if (file.getNumber() <= uplodFilerepeatSize) { |
| | | file.setNumber(file.getNumber() + 1); |
| | | file.setState(2); |
| | | uploadFile(context, file, listener); |
| | | } else { |
| | | listener.onBack(file); |
| | | } |
| | | } |
| | | }); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |