我想使用 MultipartEntity 将图像和 JsonObject 发送到 PHP 服务器。这是我的代码:
HttpClient httpClient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(urlString);
File file = new File(imageend);
HttpResponse response = null;
MultipartEntity mpEntity = new MultipartEntity();
ContentBody cbFile = new FileBody(file, "image/jpeg");
StringBody sb;
try {
sb = new StringBody(json.toString());
mpEntity.addPart("foto", cbFile);
mpEntity.addPart("json", sb);
httppost.setEntity(mpEntity);
response = httpClient.execute(httppost);
我无法在 php 中阅读此内容,因为格式如下:
{\"test1\":\"Z\",\"test2\":\"1\"}
由于反斜杠,我无法在 php 中阅读此内容。如果我通过 httppost 和 bytearrayentity 发布没有图像的 json,则没有任何反斜杠,我没有问题。