本文整理汇总了Java中org.tukaani.xz.XZFormatException类的典型用法代码示例。如果您正苦于以下问题:Java XZFormatException类的具体用法?Java XZFormatException怎么用?Java XZFormatException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
XZFormatException类属于org.tukaani.xz包,在下文中一共展示了XZFormatException类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: decodeStreamHeader
点赞 3
import org.tukaani.xz.XZFormatException; //导入依赖的package包/类
public static StreamFlags decodeStreamHeader(byte[] buf)
throws IOException {
for (int i = 0; i < XZ.HEADER_MAGIC.length; ++i)
if (buf[i] != XZ.HEADER_MAGIC[i])
throw new XZFormatException();
if (!isCRC32Valid(buf, XZ.HEADER_MAGIC.length, 2,
XZ.HEADER_MAGIC.length + 2))
throw new CorruptedInputException("XZ Stream Header is corrupt");
try {
return decodeStreamFlags(buf, XZ.HEADER_MAGIC.length);
} catch (UnsupportedOptionsException e) {
throw new UnsupportedOptionsException(
"Unsupported options in XZ Stream Header");
}
}
开发者ID:dbrant,
项目名称:zimdroid,
代码行数:18,
代码来源:DecoderUtil.java
示例2: decodeStreamHeader
点赞 3
import org.tukaani.xz.XZFormatException; //导入依赖的package包/类
public static StreamFlags decodeStreamHeader(byte[] buf) throws IOException {
for (int i = 0; i < XZ.HEADER_MAGIC.length; ++i)
if (buf[i] != XZ.HEADER_MAGIC[i])
throw new XZFormatException();
if (!isCRC32Valid(buf, XZ.HEADER_MAGIC.length, 2,
XZ.HEADER_MAGIC.length + 2))
throw new CorruptedInputException("XZ Stream Header is corrupt");
try {
return decodeStreamFlags(buf, XZ.HEADER_MAGIC.length);
} catch (UnsupportedOptionsException e) {
throw new UnsupportedOptionsException(
"Unsupported options in XZ Stream Header");
}
}
开发者ID:anadon,
项目名称:JLS,
代码行数:17,
代码来源:DecoderUtil.java