in reply to Re^3: Read Compressed Post data
in thread Read Compressed Post data
so I assume that the data is GZIP compressed before being sent by java app and the switch to not use compress was not coded so it is always compressedurlos = connection.getOutputStream(); if(compress) {bufos = new BufferedOutputStream(new GZIPOutputStream(urlos)); } else { bufos = new BufferedOutputStream(urlos);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Read Compressed Post data
by JavaFan (Canon) on Sep 01, 2009 at 15:00 UTC |