中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android網絡編程之使用HttpClient和MultipartEntityBuilder 批量同時上傳文件和文字

發布時間:2020-06-26 02:40:31 來源:網絡 閱讀:760 作者:hronyt 欄目:移動開發

/** by keinta in China sz  email: hrony@qq.com  2016.10.18
 CN: 此JAR包里面已經集成了android http 網絡請求包,也封裝了 MultipartEntityBuilder 文件與文字同時上傳,實現向下兼容
   你只需要添加這兩個包就可以實現android 的多類型網絡傳輸了
    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());
     //   ******省略******

    }


compile files('libs/android_httpcore_4.3.2.jar')//  https://pan.baidu.com/s/1i5mEO53   包已經上傳到百度云可以直接下載用


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平顺县| 三门县| 阜新市| 天等县| 乌拉特后旗| 仪征市| 潢川县| 西昌市| 北碚区| 鹤峰县| 深圳市| 明水县| 台山市| 潞城市| 丰台区| 玉环县| 含山县| 晋州市| 平果县| 历史| 涿州市| 体育| 桐梓县| 楚雄市| 孝昌县| 茌平县| 凤阳县| 元朗区| 九寨沟县| 柘荣县| 大同市| 永宁县| 麻江县| 辉南县| 巴南区| 芮城县| 徐闻县| 凉山| 太和县| 金阳县| 弥勒县|