当前位置: 首页>>代码示例>>Java>>正文


Java CompressionAlgorithmTags.BZIP2属性代码示例

本文整理汇总了Java中org.bouncycastle.bcpg.CompressionAlgorithmTags.BZIP2属性的典型用法代码示例。如果您正苦于以下问题:Java CompressionAlgorithmTags.BZIP2属性的具体用法?Java CompressionAlgorithmTags.BZIP2怎么用?Java CompressionAlgorithmTags.BZIP2使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.bouncycastle.bcpg.CompressionAlgorithmTags的用法示例。


在下文中一共展示了CompressionAlgorithmTags.BZIP2属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: PGPCompressedDataGenerator

public PGPCompressedDataGenerator(
    int                    algorithm,
    int                    compression)
{
    switch (algorithm)
    {
        case CompressionAlgorithmTags.UNCOMPRESSED:
        case CompressionAlgorithmTags.ZIP:
        case CompressionAlgorithmTags.ZLIB:
        case CompressionAlgorithmTags.BZIP2:
            break;
        default:
            throw new IllegalArgumentException("unknown compression algorithm");
    }

    if (compression != Deflater.DEFAULT_COMPRESSION)
    {
        if ((compression < Deflater.NO_COMPRESSION) || (compression > Deflater.BEST_COMPRESSION))
        {
            throw new IllegalArgumentException("unknown compression level: " + compression);
        }
    }

    this.algorithm = algorithm;
    this.compression = compression;
}
 
开发者ID:NoYouShutup,项目名称:CryptMeme,代码行数:26,代码来源:PGPCompressedDataGenerator.java

示例2: doOpen

private void doOpen() throws IOException
{
    pkOut.write(algorithm);

    switch (algorithm)
    {
        case CompressionAlgorithmTags.UNCOMPRESSED:
            dOut = pkOut;
            break;
        case CompressionAlgorithmTags.ZIP:
            dOut = new SafeDeflaterOutputStream(pkOut, compression, true);
            break;
        case CompressionAlgorithmTags.ZLIB:
            dOut = new SafeDeflaterOutputStream(pkOut, compression, false);
            break;
        case CompressionAlgorithmTags.BZIP2:
            dOut = new SafeCBZip2OutputStream(pkOut);
            break;
        default:
            // Constructor should guard against this possibility
            throw new IllegalStateException();
    }
}
 
开发者ID:NoYouShutup,项目名称:CryptMeme,代码行数:23,代码来源:PGPCompressedDataGenerator.java

示例3: getCompressionAlgorithm

protected int getCompressionAlgorithm() {
    return CompressionAlgorithmTags.BZIP2;
}
 
开发者ID:HydAu,项目名称:Camel,代码行数:3,代码来源:PGPDataFormatTest.java


注:本文中的org.bouncycastle.bcpg.CompressionAlgorithmTags.BZIP2属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。