http-post-upload 格式
程序员文章站
2024-02-01 12:41:40
...
目的:发起一个携带文件和字段的http请求,理解http 通过 boundary分割域 实现文件上传功能
浏览器:
客户端发送的请求:
结论:
http 文件上传,http协议通过定义:boundary=---------------------------7e131a1ade2200 来实现每个字段域直接的分割
针对普通的文本域,比如:username,password等
-----------------------------7e131a1ade2200 Content-Disposition: form-data; name="username" xinchun.wang -----------------------------7e131a1ade2200
针对文件上传的文本文件格式为:
-----------------------------7e131a1ade2200 Content-Disposition: form-data; name="pics1"; filename="a.txt" Content-Type: text/plain com_qunar_mall_gtt,gtt.mall.qunar.com,AFARE -----------------------------7e131a1ade2200
针对图片上传格式同文件:
以上是通过wireshark 查看的客户端请求的报文
后记:
apache common fileupload 等组件 就是通过把 ---------------------------7e131a1ade2200 \r\n 转换为 二进制数组,然后根据request 返回的InputStream 逐个字节的匹配,以boundary的二进制内容为分割点,逐步解析的。
核心实现类:org.apache.commons.fileupload.MultipartStream