我正在尝试在角度应用程序中使用(pako。js)压缩Post的有效负载,并通过休息通信在Java后端应用程序中获得答案。 在后端,我编写了一个拦截器,并尝试通过GZIPInputStream解压缩请求。但是,我总是有一个“不是GZIP格式”的消息。
问题可能在于输入流的编码,但我无法弄清楚如何解决我的问题。我测试了很多解决方案,但都没有。
如果我查看输入流的byte [],这是第一个索引
[31, -62, -117, 8, 0, 0, 0, 0...
我做错了什么?
Angular的部分
var stingtogzip = encodeURIComponent(JSON.stringify(criteria));
var gzipstring= pako.gzip(stingtogzip , { to : 'string'});
options.headers = new Headers();
options.headers.append("Content-Encoding","gzip");
options.body = gzipstring;
options.method = 'POST';
return this.http.request(req, options)
拦截器代码:
@Provider
public class GZIPReaderInterceptor implements ReaderInterceptor {
public Object aroundReadFrom(ReaderInterceptorContext ctx)
throws IOException {
String encoding = ctx.getHeaders().getFirst("Content-Encoding");
if (!"gzip".equalsIgnoreCase(encoding)) {
return ctx.proceed();
}
InputStream gzipInputStream = new GZIPInputStream(ctx.getInputStream());
ctx.setInputStream(gzipInputStream);
return ctx.proceed();
}
}
答案 0 :(得分:4)
终于找到了解决方案:
- 不需要encodeURIComponent
- 使用Blob将数据传输到服务器
var stingtogzip = JSON.stringify(criteria);
var gzipstring= pako.gzip(stingtogzip);
var blob = new Blob([gzipString]);
options.headers = new Headers();
options.headers.append("Content-Encoding","gzip");
options.body = blob;
options.method = 'POST';
return this.http.request(req, options)
答案 1 :(得分:1)
在我的情况下,内容类型标题必须包含 charset = x-user-defined-binary :
const gzip = pako.gzip(jsonString);
const blob = new Blob([gzip]);
const headers = new Headers({
'Content-Type': 'application/json; charset=x-user-defined-binary',
'Content-Encoding': 'gzip'
});
const reqOptions = new RequestOptions({ headers: headers });
return this.http.put('URL', blob, reqOptions)
.map(this.extractJSON)
.catch((err) => this.httpErrorHandler.handleError(err));