Android: 实现一个multipart/form-data内容类型的提交

来源:互联网 发布:下载马赛克软件 编辑:程序博客网 时间:2024/05/17 08:36

在手机上提交用户资料信息(如需要头像、昵称),或者提交一个商品信息(商品图片和标签),或者共享一个图片到服务器上。

我们都需要同时处理文件上传和一般类型数据的提交。

这个在web应用中很常见也很简单。移动应用可以模拟web页面提交一个HTTP POST请求,其中Content-type为multipart/form-data。

具体代码示例如下:

     HttpClient httpClient = new DefaultHttpClient();    HttpPost postRequest = new HttpPost("http://open.ixinjiekou.com/apis/v1/dealers.json");    MultipartEntity reqEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);    reqEntity.addPart("name", new StringBody("test1"));    reqEntity.addPart("tags", new StringBody("tag1,tag2"));    reqEntity.addPart("phone",new StringBody("50007777"));    try{        ByteArrayOutputStream bos = new ByteArrayOutputStream();        bitmap.compress(CompressFormat.JPEG, 75, bos);        byte[] data = bos.toByteArray();        ByteArrayBody bab = new ByteArrayBody(data, "kfc.jpg");        reqEntity.addPart("image", bab);    }    catch(Exception e){        reqEntity.addPart("image", new StringBody("image error"));    }    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);    }

iefreer