参考:
一般设置方法为POST
设置:
Content-Type: multipart/form-data; boundary=---------------------------7d62bf2f9066c
其中boundary后面表示多个文件之间的分隔符;
然后在请求body中按如下例子格式填充数据:
-----------------------------7d62bf2f9066c
Content-Disposition: form-data; name="text1"
hehe(input)
-----------------------------7d62bf2f9066c
Content-Disposition: form-data; name="file1"; filename="H:\Documents and Settings\Administrator\桌面\haha.txt"
Content-Type: text/plain
ABCDEFG(文件byte)
-----------------------------7d62bf2f9066c--
注意:---------------------------7d62bf2f9066c之前还有"--"
每个文件内容前包含Content-Disposition,Content-Type属性
最后结尾也必须有"--"