🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
请尊重他人的劳动成果,转载请注明出处:[](http://blog.csdn.net/fengyuzhengfan/article/details/39941851)[Android网络编程之使用HttpClient批量上传文件](http://blog.csdn.net/fengyuzhengfan/article/details/39941851) 我曾在《[Android网络编程之使用HTTP访问网络资源](http://blog.csdn.net/fengyuzhengfan/article/details/38919259)》一文中介绍过HttpCient的使用,这里就不在累述了,感兴趣的朋友可以去看一下。在这里主要介绍如何通过HttpClient实现文件上传。 ## 1.预备知识: 在HttpCient4.3之前上传文件主要使用MultipartEntity这个类,但现在这个类已经不在推荐使用了。随之替代它的类是MultipartEntityBuilder。 ### 下面让我们了解一下MultipartEntityBuilder类: MultipartEntityBuilder这个类主要用于创建HttpEntity。它的主要方法有: <table class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0" style="border-collapse:collapse; border:none"><tbody><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border:solid #8EAADB 1.0pt; border-left:none; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span style="font-size:9.0pt; font-family:宋体; color:#353833">修饰符和类型</span><span lang="EN-US" style="font-size:9.0pt; font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border-top:solid #8EAADB 1.0pt; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:none; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span style="font-size:9.0pt; font-family:宋体; color:#353833">方法和描述</span><span lang="EN-US" style="font-size:9.0pt; font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addBinaryBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, byte[] b)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">将字节数组以二进制的形式添加数据。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addBinaryBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, byte[] b, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">ContentType</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> contentType, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> filename)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">将字节数组以二进制的形式添加数据。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addBinaryBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">File</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> file)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">将文件以二进制的形式添加数据。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addBinaryBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">File</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> file, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">ContentType</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> contentType, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> filename)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">将文件以二进制的形式添加数据。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addBinaryBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">InputStream</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> stream)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addBinaryBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">InputStream</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> stream, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">ContentType</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> contentType, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> filename)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">将输入流以二进制的形式添加数据。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addPart</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">ContentBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> contentBody)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">添加</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">ContentBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> </span><span style="font-family:宋体; color:#353833">类型的数据。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addTextBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> text)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">添加文本数据。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">addTextBody</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> name, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> text, </span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">ContentType</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> contentType)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">以指定的内容类型添加文本数据。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">HttpEntity</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">build</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">()</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">创建一个</span><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">HttpEntity</span></span><span style="font-family:宋体; color:#4C6B87">。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US" style="font-family:宋体; color:#353833">static </span><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">create</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">()</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">创建一个</span><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span style="font-family:宋体; color:#4C6B87">对象。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">setBoundary</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">String</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> boundary)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">设置边界。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">setCharset</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">Charset</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> charset)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">设置请求的编码格式。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">setLaxMode</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">()</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">setMode</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">(</span><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">HttpMultipartMode</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833"> mode)</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p><p class="MsoNormal" align="left" style="text-align:left"><span style="font-family:宋体; color:#353833">设置模式。</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></p></td></tr><tr style=""><td width="132" nowrap="nowrap" valign="top" style="width:99.25pt; border-top:none; border-left:none; border-bottom:solid #8EAADB 1.0pt; border-right:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><strong><span lang="EN-US"><span style="font-family:宋体; color:#4C6B87; text-decoration:none">MultipartEntityBuilder</span></span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"/></strong></p></td><td width="425" valign="top" style="width:318.95pt; border:none; border-bottom:solid #8EAADB 1.0pt; background:#D9E2F3; padding:0cm 5.4pt 0cm 5.4pt"><p class="MsoNormal" align="left" style="text-align:left"><span lang="EN-US"><strong><span style="font-family:宋体; color:#4C6B87; text-decoration:none">setStrictMode</span></strong></span><span lang="EN-US" style="font-family:宋体; color:#353833">()</span><span lang="EN-US" style="font-family:'Arial','sans-serif'; color:#353833"> </span></p></td></tr></tbody></table> 主要方法说明: **addBinaryBody**、**addPart**、**addTextBody**方法用于添加要上传的数据,从上面的表格中可以发现用于添加数据的方法,都是**key-value**类型。所以在服务器端我们可以通过request.getPart("keyname")方式获取对应key的数据。也可以通过request.getParts()方式获取客户端通过以上三种方法提交所有数据。 1.通过**addBinaryBody**方法直接可以添加**File、InputStream、byte[]**类型的数据。 2.通过**addPart**方法只能添加**ContentBody**类型的数据,在org.apache.http.entity.mime.content包中已经提供了**String**、**File**以及**InputStream**对应的**ContentBody**类型的子类,如FileBody、InputStreamBody、StringBody,通过这些类我们可以将**String**、File以及**InputStream**类型的数据转换成**ContentBody**类型的数据。 3.通过**addTextBody**方法我们可以很方便的添加文本数据。 ## 2.通过HttpCient上传文件 Android端需要添加[httpcore-4.3.2.jar](http://download.csdn.net/detail/fengyuzhengfan/8018277)、[httpmime-4.3.5.jar](http://download.csdn.net/detail/fengyuzhengfan/8018281)两个包。两个包缺一不可。 在这里我用的是最新版的**HttpCient**,大家可以从[http://hc.apache.org/downloads.cgi](http://download.csdn.net/detail/fengyuzhengfan/8018289)上下载所需要的jar包,如果上面的网站打不开,大家也不用担心,我已经将项目中所需要的jar包上传到CSDN上《[httpcomponents-client-4.3.5-bin.zip](http://download.csdn.net/detail/fengyuzhengfan/8018289)》需要的朋友可以去下载。 ### Android端项目核心代码: ~~~ HttpClient client=new DefaultHttpClient();// 开启一个客户端 HTTP 请求 HttpPost post = new HttpPost(url);//创建 HTTP POST 请求 MultipartEntityBuilder builder = MultipartEntityBuilder.create(); // builder.setCharset(Charset.forName("uft-8"));//设置请求的编码格式 builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);//设置浏览器兼容模式 int count=0; for (File file:files) { // FileBody fileBody = new FileBody(file);//把文件转换成流对象FileBody // builder.addPart("file"+count, fileBody); builder.addBinaryBody("file"+count, file); count++; } builder.addTextBody("method", params.get("method"));//设置请求参数 builder.addTextBody("fileTypes", params.get("fileTypes"));//设置请求参数 HttpEntity entity = builder.build();// 生成 HTTP POST 实体 post.setEntity(entity);//设置请求参数 HttpResponse response = client.execute(post);// 发起请求 并返回请求的响应 if (response.getStatusLine().getStatusCode()==200) { return true; } return false; ~~~ 代码分析:  上面代码主要实现了多文件上传,为了方便服务器端保存文件,上面代码设置了名称为fileTypes的参数,fileTypes是由上传的文件类型名拼接成的字符串,如”.jpg.png.docx“; 服务器端可以通过获取名为fileTypes的参数,然后将其拆分成字符数组,即可得到要保存文件的类型。 ### 服务器端项目核心代码: 服务器段主要用到Servlet3.0的API,主要用到的方法有: 1.request.getParameter("");//获取客户端通过addTextBody方法添加的String类型的数据。 2.request.getPart("");//获取客户端通过**addBinaryBody**、**addPart**、**addTextBody**方法添加的指定数据,返回Part类型的对象。 3.request.getParts();//获取客户端通过**addBinaryBody**、**addPart**、**addTextBody**方法添加的所有数据,返回**Collection<Part>**类型的对象。 4.part.getName();//获取上传文件的名称即上传时指定的key。 5.part.getSize()//获取上传文件的大小单位为字节。 ~~~ String fileTypes=request.getParameter("fileTypes");//获取客户端上传的所有文件类型 String[]typeArray=fileTypes.substring(1).split("\\.");//将文件类型字符串拆分成String数组 try { Iterator<Part>iterator=request.getParts().iterator(); int count=0; while (iterator.hasNext()) {//遍历客户端上传的所有文件 if (count>=typeArray.length)break;//如果超出文件类型数组的大小则跳出循环 Part part = (Part) iterator.next(); // System.out.println("part.getSize()"+part.getSize());//获取上传文件的大小 // System.out.println("part.getName()"+part.getName());//获取上传文件的名及添加数据时的key名 File file=new File("E:\\upload\\"+count+"."+typeArray[count++]); InputStream inputStream=part.getInputStream(); FileOutputStream fos=new FileOutputStream(file); byte[]buffer=new byte[1024]; int len=0; while ((len=inputStream.read(buffer))!=-1) { fos.write(buffer,0, len); } inputStream.close(); fos.close(); } }catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } ~~~ 代码分析: 服务器端是通过Servlet实现的,通过调用request.getParameter("fileTypes")方法来获取客户端上传的所有文件类型,然后将文件类型字符串拆分成String数组。通过request.getParts()方法取出客户端通过**addBinaryBody**、**addPart**、**addTextBody**上传的所有数据,然后遍历数据集合即可进行文件的保存。 由于事先和客户端协定,添加上传文件的顺序在添加请求参数之前,所以可以根据拆分出的文件类型数组的长度判断出客户端上传文件的个数,因此当上面代码遍历超出了类型数组的长度时程序跳出循环,不再进行文件的保存,因为下面的Part都是些参数,而不是要保存的文件了。 ## 程序运行效果图: ![Android使用HttpClient上传数据](https://box.kancloud.cn/2016-02-19_56c6aa3969ce9.gif) ## 3.完成项目代码: MainActivity.java ~~~ package com.jph.ufh.activity; import java.io.File; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import com.jph.ufh.R; import com.jph.ufh.service.UploadService; import android.app.Activity; import android.os.Bundle; import android.os.Environment; import android.os.Handler; import android.os.Message; import android.view.View; import android.widget.Toast; /** * 通过httpClient批量上传文件 * @author jph * Date:2014.10.09 */ public class MainActivity extends Activity { private ArrayList<File>files; private Map<String, String>params; Handler mHandler=new Handler(){ @Override public void handleMessage(Message msg) { // TODO Auto-generated method stub switch (msg.what) { case UploadService.UPLOAD_SUCCESS: Toast.makeText(MainActivity.this, "上传成功", Toast.LENGTH_LONG).show(); break; } super.handleMessage(msg); } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); files=new ArrayList<File>(); params=new HashMap<String, String>(); } public void upload(View v) { files.clear(); params.clear(); File file=new File(Environment.getExternalStorageDirectory(),"kaola.jpg"); File file2=new File(Environment.getExternalStorageDirectory(),"test.docx"); File file3=new File(Environment.getExternalStorageDirectory(),"test.jpg"); files.add(file); files.add(file2); files.add(file3); StringBuffer sbFileTypes=new StringBuffer(); for (File tempFile:files) { String fileName=tempFile.getName(); sbFileTypes.append(getFileType(fileName)); } params.put("fileTypes",sbFileTypes.toString()); params.put("method", "upload"); UploadService uploadService=new UploadService(mHandler); uploadService.uploadFileToServer(params, files); } /** * 获取文件的类型 * @param fileName :文件名 * @return 文件类型 */ private String getFileType(String fileName) { // TODO Auto-generated method stub return fileName.substring(fileName.lastIndexOf("."), fileName.length()); } } ~~~ **UploadService.java** ~~~ package com.jph.ufh.service; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Map; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.mime.HttpMultipartMode; import org.apache.http.entity.mime.MultipartEntityBuilder; import org.apache.http.impl.client.DefaultHttpClient; import android.os.Handler; /** * 采用HttpClient上传文件,支持多文件上传 * @author jph * Date:2014.10.09 */ public class UploadService { private static String url="http://10.219.57.16:8080/ServerForUpload/ServletForUpload"; // private static String url="http://10.110.6.58:8080/ServerForUpload/ServletForUpload"; public static final int UPLOAD_SUCCESS=0x123; public static final int UPLOAD_FAIL=0x124; private Handler handler; public UploadService(Handler handler) { // TODO Auto-generated constructor stub this.handler=handler; } /** * @param params 请求参数,包括请求的的方法参数method如:“upload”, * 请求上传的文件类型fileTypes如:“.jpg.png.docx” * @param files 要上传的文件集合 */ public void uploadFileToServer(final Map<String, String> params, final ArrayList<File>files) { // TODO Auto-generated method stub new Thread(new Runnable() { @Override public void run() { // TODO Auto-generated method stub try { if (uploadFiles(url,params,files)) { handler.sendEmptyMessage(UPLOAD_SUCCESS);//通知主线程数据发送成功 }else { //将数据发送给服务器失败 } } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } }).start(); } /** * @param url servlet的地址 * @param params 要传递的参数 * @param files 要上传的文件 * @return true if upload success else false * @throws ClientProtocolException * @throws IOException */ private boolean uploadFiles(String url,Map<String, String>params,ArrayList<File>files) throws ClientProtocolException, IOException { HttpClient client=new DefaultHttpClient();// 开启一个客户端 HTTP 请求 HttpPost post = new HttpPost(url);//创建 HTTP POST 请求 MultipartEntityBuilder builder = MultipartEntityBuilder.create(); // builder.setCharset(Charset.forName("uft-8"));//设置请求的编码格式 builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);//设置浏览器兼容模式 int count=0; for (File file:files) { // FileBody fileBody = new FileBody(file);//把文件转换成流对象FileBody // builder.addPart("file"+count, fileBody); builder.addBinaryBody("file"+count, file); count++; } builder.addTextBody("method", params.get("method"));//设置请求参数 builder.addTextBody("fileTypes", params.get("fileTypes"));//设置请求参数 HttpEntity entity = builder.build();// 生成 HTTP POST 实体 post.setEntity(entity);//设置请求参数 HttpResponse response = client.execute(post);// 发起请求 并返回请求的响应 if (response.getStatusLine().getStatusCode()==200) { return true; } return false; } } ~~~