В моем Java бэкэнде я получаю json файл, который был заархивирован.
У меня есть софар:
myMethod(InputStream inputStream) {
ZipInputStream zip = new ZipInputStream(inputStream);
JsonFactory jfactory = new JsonFactory();
JsonParser jsonParser = jfactory.createParser(zip);
jsonParser.nextToken();//i am expecting this to be "{" but this always returns null
}
Чего мне не хватает?