Android HttpPost 与 Gzip 和 NameValuePair

发布于 2024-12-06 12:55:46 字数 604 浏览 0 评论 0原文

是否可以为 HttpPost 设置 2 个实体?就像:

HttpPost post = new HttpPost("http://www.abc.com");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
        nameValuePairs.add(new BasicNameValuePair("A",
                a));
        nameValuePairs.add(new BasicNameValuePair("B", b));
post.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8"));

post.setHeader("Accept-Encoding", "gzip");

ByteArrayEntity bae = new ByteArrayEntity(compress(json));

post.setEntity(bae);
HttpResponse resp;
resp = client.execute(post);

我试图告诉服务器有一些参数和一个 zip 文件。

Is it possible to set 2 entities for a HttpPost? Like:

HttpPost post = new HttpPost("http://www.abc.com");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
        nameValuePairs.add(new BasicNameValuePair("A",
                a));
        nameValuePairs.add(new BasicNameValuePair("B", b));
post.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8"));

post.setHeader("Accept-Encoding", "gzip");

ByteArrayEntity bae = new ByteArrayEntity(compress(json));

post.setEntity(bae);
HttpResponse resp;
resp = client.execute(post);

I'm trying to achieve telling the server that there are some parameters and a zip file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我要还你自由 2024-12-13 12:55:46

是 您可以发送 zip 文件并使用 nameValuePairs 传递参数。转到下面的链接您可能会得到您的解决方案。

http ://vikaskanani.wordpress.com/2011/01/11/android-upload-image-or-file-using-http-post-multi-part/

Android 通过 http post 上传多个文件到服务器

在此链接中将您的 zip 文件地址放在图像的位置。并且您可能需要进行更多修改。

yes You can send zip file and pass parameter using nameValuePairs. go to below link you may get your solution.

http://vikaskanani.wordpress.com/2011/01/11/android-upload-image-or-file-using-http-post-multi-part/

Android upload multi files to server via http post

in this link place your zip file address on place of image. and you may have to do some more modification.

厌味 2024-12-13 12:55:46

不是这样的。您需要使用多部分实体,如果相对简单,您可以手动对其进行编码,或者使用org.apache.http.entity.mime.MultipartEntity(这不是Android SDK的一部分)。 SO 上有很多关于它的帖子,搜索“android multipart”。

Not like this. You need use a multi-part entity, you can manually encode it if it is relatively simple, or use org.apache.http.entity.mime.MultipartEntity (which is not part of the Android SDK). There are multiple post about it on SO, search for 'android multipart'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文