文档说org.apache.http.entity.mime.MultipartEntity
该类已被弃用。有人可以建议我一个替代方案吗?
我在我的代码中使用它,如下所示:
entity.addPart("params", new StringBody("{\"auth\":{\"key\":\""
+ authKey + "\"},\"template_id\":\"" + templateId + "\"}"));
entity.addPart("my_file", new FileBody(image));
httppost.setEntity(entity);