4
我在MultipartEntity
中傳遞3張圖片。這很好,但我不知道如何將String
值傳遞到MultipartEntity
。以下是我的代碼:如何在多部分實體中傳遞字符串變量?
public void executeMultipartPost(Bitmap bm, int i) throws Exception {
try {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
bm.compress(CompressFormat.JPEG, 75, bos);
byte[] data = bos.toByteArray();
HttpClient httpClient = new DefaultHttpClient();
HttpPost postRequest = new HttpPost("http://www.3dsoles.com/droidapp/index.php");
ByteArrayBody bab = new ByteArrayBody(data, "image" + i + ".jpg");
// File file= new File("/mnt/sdcard/forest.png");
// FileBody bin = new FileBody(file);
MultipartEntity reqEntity = new MultipartEntity(
HttpMultipartMode.BROWSER_COMPATIBLE);
reqEntity.addPart("file", bab);
// reqEntity.addPart("userID", Constants.mUserImei);
reqEntity.addPart("photoCaption", new StringBody("sfsdfsdf"));
postRequest.setEntity(reqEntity);
HttpResponse response = httpClient.execute(postRequest);
BufferedReader reader = new BufferedReader(new InputStreamReader(
response.getEntity().getContent(), "UTF-8"));
String sResponse;
StringBuilder s = new StringBuilder();
while ((sResponse = reader.readLine()) != null) {
s = s.append(sResponse);
}
System.out.println("Response: " + s);
} catch (Exception e) {
BugSenseHandler.log("Uploading File", e);
}
}
你能幫助我@Dipak – 2015-05-09 05:51:53