我有大量数据(~100k),我的 C# 应用程序正在发送到安装了 mod_gzip 的 Apache 服务器。我正在尝试首先使用 System.IO.Compression.GZipStream 压缩数据。PHP 接收原始的 gzip 压缩数据,因此 Apache 并没有像我预期的那样解压缩它。我错过了什么吗?
System.Net.WebRequest req = WebRequest.Create(this.Url);
req.Method = this.Method; // "post"
req.Timeout = this.Timeout;
req.ContentType = "application/x-www-form-urlencoded";
req.Headers.Add("Content-Encoding: gzip");
System.IO.Stream reqStream = req.GetRequestStream();
GZipStream gz = new GZipStream(reqStream, CompressionMode.Compress);
System.IO.StreamWriter sw = new System.IO.StreamWriter(gz, Encoding.ASCII);
sw.Write( large_amount_of_data );
sw.Close();
gz.Close();
reqStream.Close()
System.Net.WebResponse resp = req.GetResponse();
// (handle response...)
我不完全确定“内容编码:gzip”适用于客户端提供的标头。