-
权限动态申请 参考
-
ExpandableListView被ScrollView嵌套问题 参考
-
okhttp请求头中不能含有中文 参考
异常信息:
Unexpected char 0x65b0 at 34 in Content-Disposition value: form-data; name="file"
Unexpected char 0x590d at 36 in Content-Disposition value: form-data; name="images"
解决方法:
URLEncoder.encode(file.getName(),"UTF-8");//App传递给后台时候编码
URLDecoder.decode(ss,"UTF-8");//后台接到时候进行转码
网友评论