4

我想使用 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,则没有任何反斜杠,我没有问题。

4

2 回答 2

2

使用以下 PHP:

string stripslashes ( string $str )
于 2012-11-20T08:27:13.637 回答
0

也许您可以\"通过\在 PHP 端使用 preg_replace 来替换

于 2012-11-20T08:27:28.643 回答