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

标签 android json servlets http-headers gzip

这个问题是问题 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/

相关文章:

java - Android HttpUrlConnection 使用相同的 key 发送多个参数

android - 如何缩小 ViewPager Android 中使用的图像?

javascript - 在 PHP 中打印嵌套 Json

c# - 如何反序列化此 JSON 以访问其中的每条数据?

java - SAP BO CMC - CMC 上的 Information Steward 链接错误(SBOP BI 4.1 sp5 和 SBO EIM 4.2 sp3): Servlet execution threw an exception

android - 尝试为 amrv6 编译 x264 时如何修复所选处理器不支持 `movw '?

android - 在 Android 上加载具有依赖项的共享库

带有 JSON 数组的 MYSQL REGEXP

java - 在java中提取ZIP

java - 使用 jQuery/Java 裁剪和上传图像