MultipartEntity and Json



我想将图像和JsonObject发送到具有MultipartEntity的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 和字节数组实体发布没有图像的 json,则没有任何反斜杠,我没有问题。

使用以下 PHP:

string stripslashes ( string $str )

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

相关内容

  • 没有找到相关文章

最新更新