我想将两个视频和一些文本字段上传到改造库中 使用Multipart Post方法,如何使用android改造库发送值
API接口
@Headers({"Accept: application/json"})
@Multipart
@POST("event")
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") String device_id,
@Part("lat") String lat,
@Part("lng") String lng,
@Part("speed") String speed,
@Part("event_type") String event_type,
@Part MultipartBody.Part videolarge);
ResponsePoja模型类
public class ResponsePojo {
@SerializedName("fileData")
@Expose
private String fileData;
@SerializedName("device_id")
@Expose
private String device_id;
@SerializedName("lat")
@Expose
private String lat;
@SerializedName("lng")
@Expose
private String lng;
@SerializedName("speed")
@Expose
private String speed;
@SerializedName("event_type")
@Expose
private String event_type;
public ResponsePojo(String fileData, String device_id, String lat, String lng, String speed, String event_type) {
this.fileData = fileData;
this.device_id = device_id;
this.lat = lat;
this.lng = lng;
this.speed = speed;
this.event_type = event_type;
}
public String getFileDatasmall() {
return fileData;
}
public void setFileDatasmall(String fileDatasmall) {
this.fileData = fileDatasmall;
}
public String getDevice_id() {
return device_id;
}
public void setDevice_id(String device_id) {
this.device_id = device_id;
}
public String getLat() {
return lat;
}
public void setLat(String lat) {
this.lat = lat;
}
public String getLng() {
return lng;
}
public void setLng(String lng) {
this.lng = lng;
}
public String getSpeed() {
return speed;
}
public void setSpeed(String speed) {
this.speed = speed;
}
public String getEvent_type() {
return event_type;
}
public void setEvent_type(String event_type) {
this.event_type = event_type;
}
“发送按钮”点击方法,当我单击时间时,将所有数据保存到服务器上
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(100, TimeUnit.SECONDS)
.readTimeout(100,TimeUnit.SECONDS).build();
Retrofit builder = new Retrofit.Builder()
.baseUrl(API.BaseUrl).client(client)
.addConverterFactory(GsonConverterFactory.create(new Gson())).build();
API api = builder.create(API.class);
//create file which we want to send to server.
File videoFIle = new File(String.valueOf(realUri));
RequestBody requestBody = RequestBody.create(MediaType.parse("multipart/form-data"), videoFIle);
MultipartBody.Part image = MultipartBody.Part.createFormData("fileData", videoFIle.getName(), requestBody);
Call<ResponsePojo> call = api.submitData(image, "1, ", "4.667566", "54.54448", "5457", "2",image);
call.enqueue(new Callback<ResponsePojo>() {
@Override
public void onResponse(Call<ResponsePojo> call, Response<ResponsePojo> response) {
ResponsePojo body = response.body();
Toast.makeText(getApplicationContext(), String.valueOf("Code "+response.message()), Toast.LENGTH_SHORT).show();
pd.dismiss();
}
@Override
public void onFailure(Call<ResponsePojo> call, Throwable t) {
Toast.makeText(getApplicationContext(), "File "+t.toString(), Toast.LENGTH_SHORT).show();
pd.dismiss();
}
});
答案 0 :(得分:1)
对于此实例,404表示此URL没有API。
也许您的URL必须为http://192.168.0.105/register/
而不是http://192.168.0.105/register
或格式错误。
例如http://192.168.0.105//register/
答案 1 :(得分:0)
在某些情况下,此错误基本上与路径(@Path)有关。因此,请像@Path(“ / event”)一样检查您的请求路径。
根据响应代码,客户端可以与给定的服务器通信,但是服务器找不到请求的内容。
因此,在这种情况下,应检查路径和参数我们要发送的内容。
答案 2 :(得分:0)
如果您正在使用@POST
,并且想使用@part
发送数据,则需要先将其转换为RequestBody
,然后再发送。做以下更改
在请求代码中
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") RequestBody device_id,...
在调用此方法之前,您需要将参数转换为Requestbody
RequestBody device_id = RequestBody.create(
MediaType.parse("text/plain"),
device_id);
现在如上文在方法调用中所述使用此变量。