本文整理了Java中org.xerial.snappy.Snappy.uncompressIntArray()
方法的一些代码示例,展示了Snappy.uncompressIntArray()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Snappy.uncompressIntArray()
方法的具体详情如下:
包路径:org.xerial.snappy.Snappy
类名称:Snappy
方法名:uncompressIntArray
[英]Uncompress the input data as an int array
[中]将输入数据解压为整数数组
代码示例来源:origin: redisson/redisson
/**
* Uncompress the input data as an int array
*
* @param input
* @return the uncompressed data
* @throws IOException
*/
public static int[] uncompressIntArray(byte[] input)
throws IOException
{
return uncompressIntArray(input, 0, input.length);
}
代码示例来源:origin: com.qwazr/qwazr-database
@Override
final public int[] toValue(byte[] compressedByteArray) throws IOException {
if (compressedByteArray == null)
return null;
return Snappy.uncompressIntArray(compressedByteArray);
}
代码示例来源:origin: org.apache.carbondata/carbondata-core
@Override public int[] unCompressInt(byte[] compInput, int offset, int length) {
try {
return Snappy.uncompressIntArray(compInput, offset, length);
} catch (IOException e) {
LOGGER.error(e.getMessage(), e);
throw new RuntimeException(e);
}
}
内容来源于网络,如有侵权,请联系作者删除!