gpt4 book ai didi

android - 应该使用什么 header 将 GZIP 压缩 JSON 从 Android 客户端发送到服务器?

转载 作者:IT老高 更新时间:2023-10-28 12:52:47 25 4
gpt4 key购买 nike

这个问题是问题 here 的延伸。 .我正在使用代码 here下面转载到 GZIP 压缩一个 JSONObject

String foo = "value";
ByteArrayOutputStream baos = new ByteArrayOutputStream();
GZIPOutputStream gzos = null;

try {
gzos = new GZIPOutputStream(baos);
gzos.write(foo.getBytes("UTF-8"));
} finally {
if (gzos != null) try { gzos.close(); } catch (IOException ignore) {};
}

byte[] fooGzippedBytes = baos.toByteArray();

我正在使用 DefaultHttpClient 将此压缩的 JSONObject 发送到服务器(代码在我的控制范围内)。

我的问题

我应该在 request 中使用什么 header ?我正在使用 request.setHeader("Content-type", "application/json"); 将 JSON 发送到服务器?

最佳答案

要通知服务器您正在发送 gzip 编码的数据,请发送 Content-Encoding header ,而不是 Accept-Encoding .

关于android - 应该使用什么 header 将 GZIP 压缩 JSON 从 Android 客户端发送到服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11414987/

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