com.blr19c.common.io.ByteZip Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
The blr19c-common library contains utility classes, Map/Stream implementation, sending enterprise
WeChat, IP/ip address acquisition, mybatis-plus separation implementation, and so on.
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