I am reading a pcap file and then storing the http response as a string.Now there are some http packets which are gzipped, i want to uncompress them.Can anyone help me out how can i decompress it using JAVA.Please give me a detailed answer.Here is my code which is giving me exceptions rightnow
int lines=0;
try {
BufferedReader reader1 = new BufferedReader(new FileReader("F:\\comp.txt"));
String line = null;
while ((line = reader1.readLine()) != null)
{
byte responseBodyBytes[] = line.getBytes();
ByteArrayInputStream bais = new ByteArrayInputStream(responseBodyBytes);
GZIPInputStream gzis = new GZIPInputStream(bais);
InputStreamReader xover = new InputStreamReader(gzis);
BufferedReader is = new BufferedReader(xover);
String line2=null;
while ((line = is.readLine()) != null)
{
System.out.println("Read: " + line2);
}
}
}
org.jnetpcap.protocol.tcpip.Httpclass. – Sam Hanes Jan 26 '12 at 20:13