peter
2025-08-18 c50561d007e420f7397f73afce8966231973ec54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.yami.trading.huobi.data.websocket.utils;
 
 
import com.yami.trading.huobi.data.websocket.exception.SDKException;
 
import java.io.*;
import java.util.zip.GZIPInputStream;
 
public abstract class InternalUtils {
 
    public static byte[] decode(byte[] data) throws IOException {
        ByteArrayInputStream bais = new ByteArrayInputStream(data);
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        decompress(bais, baos);
        baos.flush();
        baos.close();
        bais.close();
        return baos.toByteArray();
    }
 
    private static void decompress(InputStream is, OutputStream os) throws IOException {
        GZIPInputStream gis = new GZIPInputStream(is);
        int count;
        byte[] data = new byte[1024];
        while ((count = gis.read(data, 0, 1024)) != -1) {
            os.write(data, 0, count);
        }
        gis.close();
    }
 
    public static void await(long n) throws SDKException {
        try {
            Thread.sleep(n);
        } catch (InterruptedException e) {
            e.printStackTrace();
            throw new SDKException(SDKException.SYS_ERROR, "Error when sleep");
        }
    }
}