将许多文件上传到服务器的最佳方式

时间:2018-06-13 19:48:16

标签: php android post file-upload get

我正在开发一个Android应用程序,它应该向Web服务器发送一个文件数组(位图),其数量可能会有所不同。

我想知道我可以使用的最佳方法,如果可能的话,请告诉我一些这种方法的例子。

发送参数必须是这样的:

   {
        "name":"John",
        "id":9289392,
        "images":[ "image1", "image2", "image3" ]
    }

我已经知道如何发送单个文件以及如何使用post方法获取它

1 个答案:

答案 0 :(得分:0)

'multipart / form-data'支持多个文件。以下是Curl

中的示例

从链接:

“要发送多个文件的上传请求,只需添加一个额外的-F选项”

$ curl -F 'fileX=@/path/to/fileX' -F 'fileY=@/path/to/fileY' ... http://localhost/upload