Archived
0

not use decompress

This commit is contained in:
iMoHax
2014-08-27 19:23:37 +04:00
parent 269869122c
commit f426a2d34e
2 changed files with 86 additions and 1 deletions

View File

@@ -33,7 +33,8 @@ public class EMDN {
byte[] receivedData = socket.recv(0);
LOG.trace("Recived data: {}", receivedData);
if (receivedData == null) continue;
String market_json = new String(decompress(receivedData), "UTF-8");
//receivedData = decompress(receivedData);
String market_json = new String(receivedData, "UTF-8");
LOG.trace("JSON: {}", market_json);
} catch (ZMQException | UnsupportedEncodingException ex) {
LOG.error("Error on get data from EMDN", ex);