1 Post请求中文乱码的问题
多余的话就不说了,直接上代码。
/**
一般的Post请求示例
@FormUrlEncoded
@POST("你的服务器地址")
Call<xxx> xxxx(@Field("name") String name,@Field("mphone") String mphone )
**/
以上应该是我们常用的请求方法,请求传递了两个参数 “name”,”mphone”,姓名和电话。如果你发现你所有的接口都是类似的写法,有的接口服务器解析时中文不会乱码有的就会(ps:我当时遇到的时候就是这样,并且后端的人跟我说解析的方式都是一样的。两个人都非常懵逼)。我们来看看为什么会乱码。
1.1 出现乱码的根源问题在那里
首先我们要知道
@FormUrlEncoded
这个注解到底是干嘛的。打开源码查看我们可以发现,其描述说,这个是“x-www-form-urlencoded” 提交经过URL编码的表单,并且说明了在进行URL编码💰已经进行了UTF-8转码了。也就是说,怀疑编码有问题的同学可以放一放了。既然不是编码的问题,那么就是传输中少了什么。 通过查看OKhttp3.0的源码我发现其FormBody
类下面有一个final 类型的参数
private static final MediaType CONTENT_TYPE =MediaType.parse("application/x-www-form-urlencoded");
然后你通过抓包或者查看log你会发现你的请求头里面的 Content_type后面跟的就是这个值,也就是说okhttp在设计的时候有没有考虑你用中文。应为我们很多作服务端的人都知道,在提交表单数据时,都是回跟上字符集(charset=UTF-8)。但是okhttp没有给你入口。就算你设置了请求的拦截器(headerInterceptor) 当你提交表单时 Content_type 会被自动替换掉。
知道了问题的根源那么我们就来修改。
幸好Retrofit给了我们添加请求头的注解,也就是说,你okhttp把我拦截器李的请求头给干掉了,那我在加一个静态的,把你给替换掉。
/**
解决后的代码
我知道你们只想看这里 哈哈哈哈,说一大堆
**/
@FormUrlEncoded
@POST("xxxx")
@Headers("Content-Type:application/x-www-form-urlencoded; charset=utf-8")//强塞一个给你
Call<xxx> xxxx(@Field("name") String name,@Field("mphone") String mphone )
这样就可以告别中文乱码的问题了。知道答案后,是不是发现说一堆有的没得。其实遇到问题后,在寻找问题的原因才是我们成长的关键。
2 Retrofit 如何提交数组
@FormUrlEncoded
@POST("xxx")
Call<xxxx> memberShoppingDel(@Field("carId") List<String> carId);
3 提交不确定的数量和参数名的键值对
@FormUrlEncoded
@POST("xxxx")
Call<xxxx> xxxxx(@FieldMap Map<String,String> map);
直接将动态的键值对成对的放到map中提交就可以了。
列如:
Map<String,String> pamas=new LinkedTreeMap<>();//声明线性集合
for(int i=0;i<carBeans.size();i++){
pamas.put("carList["+i+"].product.id",carBeans.get(i).getId());
pamas.put("carList["+i+"].amount",carBeans.get(i).getCount());
Logger.d("carList["+i+"].product.id="+carBeans.get(i).getId()+" carList["+i+"].amount="+carBeans.get(i).getCount());
}
Call<ResponsBase> call=INST.Apiservice.memberShoppingSaveOrUpdate(pamas);
call.enqueue(callback);
4 直接解析Json源数据
在某些情况时我们不方便用Gson直接解析成实体类,想要自己解析源json时
@FormUrlEncoded
@POST("member/order/charge")
Call<ResponseBody> memberOrderCharge(@Field("orderNumber") String orderNumber,@Field("channel") String channel);
直接使用OKhttp原生的ResponseBody 作为回调类型就可以了。
然后解析时
String jsonData=new String(response.body().bytes());
5 如何提交带参数的和文件的请求
/**
* 上传图片
* @param parts
* @return
*/
@Multipart
@POST("Upload/upImage")
Call<ResponseT<List<String>>> upload(@PartMap Map<String, RequestBody> map, @Part() List<MultipartBody.Part> parts);
/**
* 上传图片
* @param upload
* @param callback
*/
public static void upload( String upload, String id,String type,Callback<ResponseT<List<String>>> callback){
List<String> Content_md5s = new ArrayList<>();
List<MultipartBody.Part> parts = new ArrayList<>();
File file = new File(upload);
Content_md5s.add(file.getName() + ":" + FileUtil.getFileMD5(file));//添加文件名MD5
String content_type = "image/jpeg";
if (FileUtil.getFileType(file.getName()) == FileUtil.FILE_TYPE_FOR_PNG) {
content_type = "image/png";
} else if (FileUtil.getFileType(file.getName()) == FileUtil.FILE_TYPE_FOR_MP4) {
content_type = "video/mpeg4";
}
RequestBody requestBody = RequestBody.create(MediaType.parse(content_type), file);
MultipartBody.Part part = MultipartBody.Part.createFormData("image", file.getName(), requestBody);
parts.add(part);
Map<String,RequestBody> params = new HashMap<>();
//以下参数是伪代码,参数需要换成自己服务器支持的
params.put("id", convertToRequestBody(id));
params.put("type",convertToRequestBody(type));
Call<ResponseT<List<String>>> call = INST.Apiservice.upload(params, parts);
call.enqueue(callback);
}
尾言
以上都是介绍的post 请求,因为很少用到get或者说最近没有遇到有get时遇到问题又或者说以前遇到过忘记了。自己小总结,避免以后走弯路。