/** by keinta in China sz email: hrony@qq.com 2016.10.18
CN: 此JAR包里面已經(jīng)集成了android http 網(wǎng)絡(luò)請求包,也封裝了 MultipartEntityBuilder 文件與文字同時上傳,實現(xiàn)向下兼容
你只需要添加這兩個包就可以實現(xiàn)android 的多類型網(wǎng)絡(luò)傳輸了
Please add the packages :
compile files('libs/org.apache.http.legacy.jar')
compile files('libs/httpmime-4.3.5.jar')
compile files('libs/android_httpcore_4.3.2.jar')// https://pan.baidu.com/s/1i5mEO53
Inside the JAR package has integrated the android HTTP request packet network, also encapsulates the upload MultipartEntityBuilder file with the text at the same time, achieve backward compatibility
/** example
* @param context
* @param url
* @param filekey
* @param params
* @param file
* @return
*/
public String postMutil(Context context, String url, String filekey, final TreeMap<String, String> params, File file) {
// ***省略***
//Image attaching
MultipartEntityBuilder multipartEntity = MultipartEntityBuilder.create();
if (file != null && file.exists()) {
multipartEntity.addBinaryBody(filekey, file, ContentType.MULTIPART_FORM_DATA, file.getName());
}
//Json string attaching
for (Map.Entry<String, String> entry : params.entrySet()) {
multipartEntity.addPart(entry.getKey(), new StringBody(entry.getValue()));
}
httppost.setEntity(multipartEntity.build());
// ******省略******
創(chuàng)新互聯(lián)公司專注于文峰企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè),商城網(wǎng)站開發(fā)。文峰網(wǎng)站建設(shè)公司,為文峰等地區(qū)提供建站服務(wù)。全流程定制開發(fā),專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
}
compile files('libs/android_httpcore_4.3.2.jar')// https://pan.baidu.com/s/1i5mEO53 包已經(jīng)上傳到百度云可以直接下載用
網(wǎng)站名稱:Android網(wǎng)絡(luò)編程之使用HttpClient和MultipartEntityBuilder批量同時上傳文件和文字
網(wǎng)頁地址:http://jinyejixie.com/article2/gggsoc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設(shè)、定制網(wǎng)站、全網(wǎng)營銷推廣、手機網(wǎng)站建設(shè)、App設(shè)計、域名注冊
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)