gpt4 book ai didi

java - MultipartEntity 和 Json

转载 作者:太空宇宙 更新时间:2023-11-03 10:25:26 25 4
gpt4 key购买 nike

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

最佳答案

使用以下 PHP:

string stripslashes ( string $str )

关于java - MultipartEntity 和 Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13469031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com