91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

汉中市| 长宁区| 千阳县| 哈尔滨市| 彭泽县| 上饶市| 诏安县| 靖边县| 潢川县| 武邑县| 恭城| 中方县| 尚志市| 横山县| 厦门市| 庆阳市| 齐齐哈尔市| 陆丰市| 华阴市| 保德县| 武平县| 修武县| 扶风县| 康乐县| 台州市| 涞源县| 乾安县| 龙口市| 滨海县| 万荣县| 杭锦后旗| 黑山县| 凌源市| 屯留县| 二手房| 若尔盖县| 日喀则市| 都匀市| 珠海市| 宁都县| 翁牛特旗|