- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setCompressionLevel()
方法的一些代码示例,展示了ZipParameters.setCompressionLevel()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipParameters.setCompressionLevel()
方法的具体详情如下:
包路径:net.lingala.zip4j.model.ZipParameters
类名称:ZipParameters
方法名:setCompressionLevel
暂无
代码示例来源:origin: stackoverflow.com
net.lingala.zip4j.core.ZipFile zipFile = new ZipFile("out.zip");
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
zipFile.createZipFileFromFolder("path/to/source/dir", parameters, true, maximum size);
代码示例来源:origin: stackoverflow.com
ZipFile zipfile = new ZipFile("/mnt/sdcard/bla.zip");
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
zipfile.addFolder("/mnt/sdcard/folderToZip", parameters);
代码示例来源:origin: stackoverflow.com
ZipParameters _parameters = new ZipParameters();
_parameters.setCompressionMethod(Zip4jConstants.COMP_STORE);
_parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_FASTEST);
_parameters.setIncludeRootFolder(false);
ArrayList<File> _files = new ArrayList<File>();
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_STORE);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_FASTEST);
parameters.setIncludeRootFolder(false);
ArrayList<File> files = new ArrayList<File>();
代码示例来源:origin: stackoverflow.com
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
代码示例来源:origin: stackoverflow.com
public void zipFileWithPassword(String fileToZipPath,String password,String zippedFilePath) throws ZipException
{
ZipFile zipFile=new ZipFile(zippedFilePath);
ZipParameters parameters=new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
parameters.setEncryptFiles(true);
parameters.setEncryptionMethod(Zip4jConstants.ENC_METHOD_STANDARD);
parameters.setPassword(password);
File fileToZip=new File(fileToZipPath);
log(Severity.INFO,"Creating a ZIP file: %s",fileToZipPath);
zipFile.addFile(fileToZip,parameters);
}
代码示例来源:origin: stackoverflow.com
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
代码示例来源:origin: stackoverflow.com
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
代码示例来源:origin: stackoverflow.com
zipParams.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
zipParams.setEncryptFiles(true);
zipParams.setEncryptionMethod(Zip4jConstants.ENC_METHOD_STANDARD);
代码示例来源:origin: stackoverflow.com
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
代码示例来源:origin: stackoverflow.com
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
代码示例来源:origin: quanticc/lawena-recording-tool
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
for (Path path : Arrays.asList(configBackupPath, customBackupPath)) {
if (Files.exists(path)) {
代码示例来源:origin: jclehner/rxdroid
zp.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
zp.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
代码示例来源:origin: de.alpharogroup/file-worker
parameters.setCompressionLevel(compressionLevel);
zipFiles(zipFile4j, parameters, toAdd);
代码示例来源:origin: stackoverflow.com
zipParameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_ULTRA);
zipParameters.setEncryptFiles(true);
zipParameters.setEncryptionMethod(Zip4jConstants.ENC_METHOD_AES);
代码示例来源:origin: SpringCloud/spring-cloud-codegen
ZipParameters parameters = new ZipParameters();
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL); // 压缩级别
if (StringUtils.isNotEmpty(password)) {
parameters.setEncryptFiles(true);
代码示例来源:origin: Nepxion/Skeleton
ZipParameters parameters = new ZipParameters();
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL); // 压缩级别
if (StringUtils.isNotEmpty(password)) {
parameters.setEncryptFiles(true);
代码示例来源:origin: com.tomitribe.tribestream/tribestream-container
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
代码示例来源:origin: stackoverflow.com
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE); // set compression method to deflate compression
//DEFLATE_LEVEL_FASTEST - Lowest compression level but higher speed of compression
//DEFLATE_LEVEL_FAST - Low compression level but higher speed of compression
//DEFLATE_LEVEL_NORMAL - Optimal balance between compression level/speed
//DEFLATE_LEVEL_MAXIMUM - High compression level with a compromise of speed
//DEFLATE_LEVEL_ULTRA - Highest compression level but low speed
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
//Set the encryption flag to true
parameters.setEncryptFiles(true);
//Set the encryption method to AES Zip Encryption
parameters.setEncryptionMethod(Zip4jConstants.ENC_METHOD_AES);
//AES_STRENGTH_128 - For both encryption and decryption
//AES_STRENGTH_192 - For decryption only
//AES_STRENGTH_256 - For both encryption and decryption
//Key strength 192 cannot be used for encryption. But if a zip file already has a
//file encrypted with key strength of 192, then Zip4j can decrypt this file
parameters.setAesKeyStrength(Zip4jConstants.AES_STRENGTH_256);
代码示例来源:origin: com.jalalkiswani/jk-util
/**
* Compress.
*
* @param fileName
* the file name
* @param compressedFileName
* the compressed file name
* @param password
* the password
*/
public static void compress(String fileName, String compressedFileName, String password) {
try {
ZipParameters zipParameters = new ZipParameters();
zipParameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
zipParameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_ULTRA);
if (password != null) {
zipParameters.setEncryptFiles(true);
zipParameters.setEncryptionMethod(Zip4jConstants.ENC_METHOD_AES);
zipParameters.setAesKeyStrength(Zip4jConstants.AES_STRENGTH_256);
zipParameters.setPassword(password);
}
String destinationZipFilePath = compressedFileName;
ZipFile zipFile = new ZipFile(destinationZipFilePath);
zipFile.addFile(new File(fileName), zipParameters);
} catch (ZipException e) {
JKExceptionUtil.handle(e);
}
}
代码示例来源:origin: MCMrARM/revolution-irc
ZipParameters params = new ZipParameters();
params.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
params.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
if (password != null) {
params.setEncryptFiles(true);
本文整理了Java中net.lingala.zip4j.model.ZipParameters.isSourceExternalStream()方法的一些代码示例,展示了ZipParameters.i
本文整理了Java中net.lingala.zip4j.model.ZipParameters.isIncludeRootFolder()方法的一些代码示例,展示了ZipParameters.isIn
本文整理了Java中net.lingala.zip4j.model.ZipParameters.isEncryptFiles()方法的一些代码示例,展示了ZipParameters.isEncrypt
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setFileNameInZip()方法的一些代码示例,展示了ZipParameters.setFile
本文整理了Java中net.lingala.zip4j.model.ZipParameters.getCompressionLevel()方法的一些代码示例,展示了ZipParameters.getC
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setRootFolderInZip()方法的一些代码示例,展示了ZipParameters.setRo
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setSourceExternalStream()方法的一些代码示例,展示了ZipParameters.
本文整理了Java中net.lingala.zip4j.model.ZipParameters.isReadHiddenFiles()方法的一些代码示例,展示了ZipParameters.isRead
本文整理了Java中net.lingala.zip4j.model.ZipParameters.getEncryptionMethod()方法的一些代码示例,展示了ZipParameters.getE
本文整理了Java中net.lingala.zip4j.model.ZipParameters.getCompressionMethod()方法的一些代码示例,展示了ZipParameters.get
本文整理了Java中net.lingala.zip4j.model.ZipParameters.clone()方法的一些代码示例,展示了ZipParameters.clone()的具体用法。这些代码示
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setDefaultFolderPath()方法的一些代码示例,展示了ZipParameters.set
本文整理了Java中net.lingala.zip4j.model.ZipParameters.getDefaultFolderPath()方法的一些代码示例,展示了ZipParameters.get
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setIncludeRootFolder()方法的一些代码示例,展示了ZipParameters.set
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setSourceFileCRC()方法的一些代码示例,展示了ZipParameters.setSour
本文整理了Java中net.lingala.zip4j.model.ZipParameters.getSourceFileCRC()方法的一些代码示例,展示了ZipParameters.getSour
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setEncryptionMethod()方法的一些代码示例,展示了ZipParameters.setE
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setPassword()方法的一些代码示例,展示了ZipParameters.setPassword(
本文整理了Java中net.lingala.zip4j.model.ZipParameters.()方法的一些代码示例,展示了ZipParameters.()的具体用法。这些代码示例主要来源于Gith
本文整理了Java中net.lingala.zip4j.model.ZipParameters.setCompressionMethod()方法的一些代码示例,展示了ZipParameters.set
我是一名优秀的程序员,十分优秀!