我想使用Apache HttpClient将文件内容作为HTTP请求的一部分发送,但我无法弄清楚如何在请求主体中传递文件内容。
使用HttpClient发布文件内容?
原标题:
最佳回答
你没有具体说明格式是什么。
最可能的是,您想发送一个POST请求,内容将为multipart/form-data MIME类型。这模仿了浏览器从<INPUT type="file" ...>表单元素发送的内容。这需要在服务器端进行一些相当复杂的解析,以从主体中提取多个部分,并从其他字段(如果有)中正确提取文件数据。幸运的是,commons-fileupload可以完美地完成这个任务。关于FilePart的第一个答案是完全正确的。
或者,您可以通过使用InputStreamRequestEntity将文件的原始内容作为请求主体发布。如果您正在编写自己的服务器端以接收数据,这可能要简单得多。服务器端就像将请求的InputStream流式传输到磁盘一样简单。我使用此技术进行带Google Gears的上传。
问题回答
相关问题
热门标签
- winforms
- combobox
- fogbugz
- java
- date
- internationalization
- asp.net
- iis
- url-rewriting
- urlrewriter
- c#
- enums
- ocaml
- haxe
- algorithm
- string
- viewstate
- .net
- c++
- c
- symbol-table
- mysql
- database
- postgresql
- licensing
- migration
- vb.net
- vb6
- declaration
- vb6-migration
- python
- psycopg2
- backup
- vmware
- virtualization
- gnu-screen
- authentication
- desktop
- excel
- xll
- cultureinfo
- regioninfo
- oracle
- client
- session
- download
- html
- virtual
- constructor
- scenarios
- perl
- full-text-search
- javascript
- ajax
- testing
- oop
- inheritance
- vim
- encapsulation
- information-hiding