如何在Android HttpPost中使用MultipartEntity上传图像?

时间:2013-09-26 13:11:23

标签: android http-post image-uploading

使用MultipartEntity无法上传图片。

提供状态代码200,但图像未在服务器端更新。

 String responseBody;
            HttpClient client = new DefaultHttpClient();
            HttpPost request = new HttpPost(
                    "http__zz/upload_picture?key=abc&property_id=10");

            MultipartEntity entity = new MultipartEntity(
                    HttpMultipartMode.BROWSER_COMPATIBLE);

            File file = new File(Environment.getExternalStoragePublicDirectory(
                    Environment.DIRECTORY_DCIM).toString()
                    + "/Camera/Test.jpg");
            ContentBody encFile = new FileBody(file, "image/png");

            entity.addPart("picture", encFile);

            request.setEntity(entity);

            ResponseHandler<String> responsehandler = new BasicResponseHandler();
            responseBody = client.execute(request, responsehandler);

            if (responseBody != null && responseBody.length() > 0) {
                Log.w("TAG", "Response image upload" + responseBody);

            }

3 个答案:

答案 0 :(得分:1)

尝试使用ByteArrayBody代替FileBody

File file = new File(Environment.getExternalStoragePublicDirectory(
                    Environment.DIRECTORY_DCIM).toString()
                    + "/Camera/Test.jpg");
Bitmap b = BitmapFactory.decodeFile(file;
ByteArrayOutputStream bao = new ByteArrayOutputStream();
b.compress(CompressFormat.JPEG, 100, bao);

ByteArrayBody body = new ByteArrayBody(bao.toByteArray(), "image/jpeg", "picture");
entity.addPart("picture", body);

答案 1 :(得分:0)

为什么不尝试将其作为base64编码的字符串发送?

答案 2 :(得分:0)

执行此操作的最佳方法是实现IntentService并使用广播意图通知状态。请从git查看这段代码,为我工作

https://github.com/alexbbb/android-upload-service