當前位置: 首頁>>代碼示例>>Java>>正文


Java ZipParameters.getCompressionMethod方法代碼示例

本文整理匯總了Java中net.lingala.zip4j.model.ZipParameters.getCompressionMethod方法的典型用法代碼示例。如果您正苦於以下問題:Java ZipParameters.getCompressionMethod方法的具體用法?Java ZipParameters.getCompressionMethod怎麽用?Java ZipParameters.getCompressionMethod使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.lingala.zip4j.model.ZipParameters的用法示例。


在下文中一共展示了ZipParameters.getCompressionMethod方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: checkParameters

import net.lingala.zip4j.model.ZipParameters; //導入方法依賴的package包/類
private void checkParameters(ZipParameters parameters) throws ZipException {
	
	if (parameters == null) {
		throw new ZipException("cannot validate zip parameters");
	}
	
	if ((parameters.getCompressionMethod() != Zip4jConstants.COMP_STORE) && 
			parameters.getCompressionMethod() != Zip4jConstants.COMP_DEFLATE) {
		throw new ZipException("unsupported compression type");
	}
	
	if (parameters.getCompressionMethod() == Zip4jConstants.COMP_DEFLATE) {
		if (parameters.getCompressionLevel() < 0 && parameters.getCompressionLevel() > 9) {
			throw new ZipException("invalid compression level. compression level dor deflate should be in the range of 0-9");
		}
	}
	
	if (parameters.isEncryptFiles()) {
		if (parameters.getEncryptionMethod() != Zip4jConstants.ENC_METHOD_STANDARD && 
				parameters.getEncryptionMethod() != Zip4jConstants.ENC_METHOD_AES) {
			throw new ZipException("unsupported encryption method");
		}
		
		if (parameters.getPassword() == null || parameters.getPassword().length <= 0) {
			throw new ZipException("input password is empty or null");
		}
	} else {
		parameters.setAesKeyStrength(-1);
		parameters.setEncryptionMethod(-1);
	}
	
}
 
開發者ID:joielechong,項目名稱:Zip4jAndroid,代碼行數:33,代碼來源:ZipEngine.java

示例2: putNextEntry

import net.lingala.zip4j.model.ZipParameters; //導入方法依賴的package包/類
public void putNextEntry(File file, ZipParameters zipParameters)
		throws ZipException {
	super.putNextEntry(file, zipParameters);
	if (zipParameters.getCompressionMethod() == Zip4jConstants.COMP_DEFLATE) {
		deflater.reset();
		if ((zipParameters.getCompressionLevel() < 0 || zipParameters
				.getCompressionLevel() > 9)
				&& zipParameters.getCompressionLevel() != -1) {
			throw new ZipException(
					"invalid compression level for deflater. compression level should be in the range of 0-9");
		}
		deflater.setLevel(zipParameters.getCompressionLevel());
	}
}
 
開發者ID:joielechong,項目名稱:Zip4jAndroid,代碼行數:15,代碼來源:DeflaterOutputStream.java


注:本文中的net.lingala.zip4j.model.ZipParameters.getCompressionMethod方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。