如何实现MultiPart方法在Android上传图像

时间:2014-11-07 06:18:06

标签: android file-upload image-uploading multipart image-upload

我想在我的应用中添加图片上传功能。问题是我想将大尺寸图像上传到服务器。这就是为什么我想在这种情况下使用Multipart方法。由于我是这个概念的新手,我不知道如何实现这个。此外,我还有一些关于图片上传的具体问题。

我需要向我必须发送JSON数据的服务器发送POST请求,例如: -

JSONObject jsonObject = new JSONObject();

        jsonObject.put("filename", "menu.jpg");
        jsonObject.put("filetype", "image/jpeg");
        jsonObject.put("user_id", "1");
        jsonObject.put("user_file", "");

这里,用户文件是我要上传的实际文件,上面的参数是我需要将此Image文件发送到服务器的参数,并且它们都必须上传文件。

现在我的问题是如何使用MultiPart方法发送JSON,我应该使用Volley或AsyncTask来执行整个步骤。 任何人都可以帮助我,任何帮助都会很明显。 感谢

2 个答案:

答案 0 :(得分:0)

你必须像这样工作

public void connectForMultipart() throws Exception {
    con = (HttpURLConnection) ( new URL(url)).openConnection();
    con.setRequestMethod("POST");
    con.setDoInput(true);
    con.setDoOutput(true);
    con.setRequestProperty("Connection", "Keep-Alive");
    con.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
    con.connect();
    os = con.getOutputStream();
}

public void addFormPart(String paramName, String value) throws Exception {
    writeParamData(paramName, value);
}

public void addFilePart(String paramName, String fileName, byte[] data) throws Exception {
    os.write( (delimiter + boundary + "\r\n").getBytes());
    os.write( ("Content-Disposition: form-data; name=\"" + paramName +  "\"; filename=\"" + fileName + "\"\r\n"  ).getBytes());
    os.write( ("Content-Type: application/octet-stream\r\n"  ).getBytes());
    os.write( ("Content-Transfer-Encoding: binary\r\n"  ).getBytes());
    os.write("\r\n".getBytes());

    os.write(data);

    os.write("\r\n".getBytes());
}   
public void finishMultipart() throws Exception {
    os.write( (delimiter + boundary + delimiter + "\r\n").getBytes());
}

获得回复

httpPost.setEntity(entity);
HttpResponse response = httpClient.execute(httpPost);

BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));



String sResponse;
while ((sResponse = reader.readLine()) != null) 
 {
     s = s.append(sResponse);
 }

 if(response.getStatusLine().getStatusCode() == HttpStatus.SC_OK)
 {
     return s.toString();
 }else
 {
     return "{\"status\":\"false\",\"message\":\"Some error occurred\"}";
 }   
} catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

代替图像你可以发送任何东西,你想...如果它创造了一些麻烦然后 你应该将大文件分成小部分,然后尝试发送。并在服务器上加入这个小部分。

答案 1 :(得分:0)

您无需在json对象中添加图像。 请仔细阅读此链接。我想你会解决你的问题。 http://www.survivingwithandroid.com/2013/05/android-http-downlod-upload-multipart.html