All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blr19c.common.io.ByteZip Maven / Gradle / Ivy

Go to download

The blr19c-common library contains utility classes, Map/Stream implementation, sending enterprise WeChat, IP/ip address acquisition, mybatis-plus separation implementation, and so on.

There is a newer version: 1.4.4
Show newest version
package com.blr19c.common.io;


import java.io.ByteArrayInputStream;

/**
 * 字节zip文件
 *
 * @author blr
 */
public class ByteZip extends Zip {

    public ByteZip(String name, byte[] data) {
        super(name, new ByteArrayInputStream(data));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy