decLen = infl1.inflate(result);
infl1.end();
assertEquals(inputString, new String(result, 0, decLen));
infl2.setInput(output2, 0, dataLen2);
decLen = infl2.inflate(result);
assertTrue(infl2.needsDictionary());
infl2.setDictionary(dictionary2.getBytes());
decLen = infl2.inflate(result);
infl2.end();