本文整理汇总了Java中net.lingala.zip4j.exception.ZipException.printStackTrace方法的典型用法代码示例。如果您正苦于以下问题:Java ZipException.printStackTrace方法的具体用法?Java ZipException.printStackTrace怎么用?Java ZipException.printStackTrace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.lingala.zip4j.exception.ZipException
的用法示例。
在下文中一共展示了ZipException.printStackTrace方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: unzip
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
@ProtoMethod(description = "Unzip a file into a folder", example = "")
@ProtoMethodParam(params = {"zipFile", "folder"})
public void unzip(final String src, final String dst, final ReturnInterface callback) {
Thread t = new Thread(new Runnable() {
@Override
public void run() {
try {
FileIO.unZipFile(getAppRunner().getProject().getFullPathForFile(src), getAppRunner().getProject().getFullPathForFile(dst));
returnValues(null, callback);
} catch (ZipException e) {
e.printStackTrace();
}
}
});
t.start();
}
示例2: compile
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public static void compile(String pkgroot){
try {
File parent = new File(pkgroot).getParentFile();
String name = new File(pkgroot).getName() + ".atomx";
ZipFile zipFile = new ZipFile(new File(parent, name));
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
parameters.setIncludeRootFolder(false);
zipFile.addFolder(pkgroot, parameters);
} catch (ZipException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
示例3: list
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
/**
* 解压文件,注意该法方法并不是异步的
*
* @param zipFile 压缩文件
* @param filter
* @return
*/
public static void list(File zipFile, FileFilter filter){
try {
if(!FileHelper.exists(zipFile)){
return;
}
ZipFile zip = new ZipFile(zipFile);
zip.setRunInThread(false);
// Get the list of file headers from the zip file
List fileHeaderList = zip.getFileHeaders();
// Loop through the file headers
for (int i = 0; i < fileHeaderList.size(); i++) {
// Extract the file to the specified destination
filter.handle(zip, (FileHeader) fileHeaderList.get(i));
}
} catch (ZipException e) {
e.printStackTrace();
}
}
示例4: AddFolder
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public AddFolder() {
try {
// Initiate ZipFile object with the path/name of the zip file.
ZipFile zipFile = new ZipFile("c:\\ZipTest\\AddFolder.zip");
// Folder to add
String folderToAdd = "c:\\FolderToAdd";
// Initiate Zip Parameters which define various properties such
// as compression method, etc.
ZipParameters parameters = new ZipParameters();
// set compression method to store compression
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
// Set the compression level
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
// Add folder to the zip file
zipFile.addFolder(folderToAdd, parameters);
} catch (ZipException e) {
e.printStackTrace();
}
}
示例5: decompressZipFile
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public void decompressZipFile(String appName, String filename, String password) {
String filePath = Environment.getExternalStorageDirectory() + "/" + appName;
try {
File src = new File(filePath, filename);
ZipFile zipFile = new ZipFile(src);
if (zipFile.isEncrypted())
zipFile.setPassword(password);
zipFile.extractAll(filePath);
} catch (ZipException e) {
e.printStackTrace();
}
}
示例6: zip
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
/**
* 使用给定密码压缩指定文件或文件夹到指定位置.
* <p>
* dest可传最终压缩文件存放的绝对路径,也可以传存放目录,也可以传null或者"".<br />
* 如果传null或者""则将压缩文件存放在当前目录,即跟源文件同目录,压缩文件名取源文件名,以.zip为后缀;<br />
* 如果以路径分隔符(File.separator)结尾,则视为目录,压缩文件名取源文件名,以.zip为后缀,否则视为文件名.
* @param src 要压缩的文件或文件夹路径
* @param dest 压缩文件存放路径
* @param isCreateDir 是否在压缩文件里创建目录,仅在压缩文件为目录时有效.<br />
* 如果为false,将直接压缩目录下文件到压缩文件.
* @param passwd 压缩使用的密码
* @return 最终的压缩文件存放的绝对路径,如果为null则说明压缩失败.
*/
public static String zip(String src, String dest, boolean isCreateDir, String passwd) {
File srcFile = new File(src);
File destFile = new File(dest);
dest = buildDestinationZipFilePath(srcFile, dest);
ZipParameters parameters = new ZipParameters();
parameters.setFileNameInZip(destFile.getName().substring(0,destFile.getName().lastIndexOf("."))+".log");
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE); // 压缩方式
parameters.setSourceExternalStream(true);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL); // 压缩级别
if (!TextUtils.isEmpty(passwd)) {
parameters.setEncryptFiles(true);
parameters.setEncryptionMethod(Zip4jConstants.ENC_METHOD_STANDARD); // 加密方式
parameters.setPassword(passwd.toCharArray());
}
try {
ZipFile zipFile = new ZipFile(dest);
if (srcFile.isDirectory()) {
// 如果不创建目录的话,将直接把给定目录下的文件压缩到压缩文件,即没有目录结构
if (!isCreateDir) {
File [] subFiles = srcFile.listFiles();
ArrayList<File> temp = new ArrayList<File>();
Collections.addAll(temp, subFiles);
zipFile.addFiles(temp, parameters);
return dest;
}
zipFile.addFolder(srcFile, parameters);
} else {
zipFile.addFile(srcFile, parameters);
}
return dest;
} catch (ZipException e) {
e.printStackTrace();
}
return null;
}
示例7: repackCert
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
/**
* Jar sign creates CERT SF & RSA but some apk have different name like
* ABC.SF This module will rename the CERT.SF & CERT.RSA to the new
* certificate name
*
* @param newAPKPath
* Path of the modified apk
*/
public static void repackCert(String newAPKPath) {
try {
ZipFile zipFile = new ZipFile(newAPKPath);
zipFile.extractFile("META-INF" + File.separator + "CERT.RSA",
getProjectPath());
zipFile.extractFile("META-INF" + File.separator + "CERT.SF",
getProjectPath());
zipFile.removeFile("META-INF" + File.separator + "CERT.SF");
zipFile.removeFile("META-INF" + File.separator + "CERT.RSA");
File rsaFile = new File(getProjectPath() + File.separator
+ "META-INF" + File.separator + "CERT.RSA");
File sfFile = new File(getProjectPath() + File.separator
+ "META-INF" + File.separator + "CERT.SF");
File newCertFolder = new File(getProjectPath() + File.separator
+ "META-INF");
rsaFile.renameTo(new File(getProjectPath() + File.separator
+ "META-INF" + File.separator + certificateName + ".RSA"));
sfFile.renameTo(new File(getProjectPath() + File.separator
+ "META-INF" + File.separator + certificateName + ".SF"));
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE);
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL);
zipFile.addFolder(newCertFolder, parameters);
} catch (ZipException e) {
e.printStackTrace();
}
}
示例8: verifyBackupFile
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public static boolean verifyBackupFile(File file) {
try {
ZipFile zipFile = new ZipFile(file);
FileHeader preferences = zipFile.getFileHeader(BACKUP_PREFERENCES_PATH);
FileHeader notificationRules = zipFile.getFileHeader(BACKUP_NOTIFICATION_RULES_PATH);
FileHeader commandAliases = zipFile.getFileHeader(BACKUP_COMMAND_ALIASES_PATH);
return preferences != null && notificationRules != null && commandAliases != null;
} catch (ZipException e) {
e.printStackTrace();
return false;
}
}
示例9: isBackupPasswordProtected
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public static boolean isBackupPasswordProtected(File file) {
try {
ZipFile zipFile = new ZipFile(file);
FileHeader preferences = zipFile.getFileHeader(BACKUP_PREFERENCES_PATH);
return preferences.isEncrypted();
} catch (ZipException e) {
e.printStackTrace();
return false;
}
}
示例10: zip
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
/**
* 使用给定密码压缩指定文件或文件夹到指定位置.
* <p>
* dest可传最终压缩文件存放的绝对路径,也可以传存放目录,也可以传null或者"".<br />
* 如果传null或者""则将压缩文件存放在当前目录,即跟源文件同目录,压缩文件名取源文件名,以.zip为后缀;<br />
* 如果以路径分隔符(File.separator)结尾,则视为目录,压缩文件名取源文件名,以.zip为后缀,否则视为文件名.
* @param src 要压缩的文件或文件夹路径
* @param dest 压缩文件存放路径
* @param isCreateDir 是否在压缩文件里创建目录,仅在压缩文件为目录时有效.<br />
* 如果为false,将直接压缩目录下文件到压缩文件.
* @param passwd 压缩使用的密码
* @return 最终的压缩文件存放的绝对路径,如果为null则说明压缩失败.
*/
public static String zip(String src, String dest, boolean isCreateDir, String passwd) {
File srcFile = new File(src);
dest = buildDestinationZipFilePath(srcFile, dest);
ZipParameters parameters = new ZipParameters();
parameters.setCompressionMethod(Zip4jConstants.COMP_DEFLATE); // 压缩方式
parameters.setCompressionLevel(Zip4jConstants.DEFLATE_LEVEL_NORMAL); // 压缩级别
if (!StringUtils.isEmpty(passwd)) {
parameters.setEncryptFiles(true);
parameters.setEncryptionMethod(Zip4jConstants.ENC_METHOD_STANDARD); // 加密方式
parameters.setPassword(passwd.toCharArray());
}
try {
ZipFile zipFile = new ZipFile(dest);
if (srcFile.isDirectory()) {
// 如果不创建目录的话,将直接把给定目录下的文件压缩到压缩文件,即没有目录结构
if (!isCreateDir) {
File [] subFiles = srcFile.listFiles();
ArrayList<File> temp = new ArrayList<File>();
Collections.addAll(temp, subFiles);
zipFile.addFiles(temp, parameters);
return dest;
}
zipFile.addFolder(srcFile, parameters);
} else {
zipFile.addFile(srcFile, parameters);
}
return dest;
} catch (ZipException e) {
e.printStackTrace();
}
return null;
}
示例11: getInputStream
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public static ZipInputStream getInputStream(File source, String fileName) {
try {
ZipFile zipFile = new ZipFile(source);
return zipFile.getInputStream(zipFile.getFileHeader(fileName));
} catch (ZipException e) {
e.printStackTrace();
}
return null;
}
示例12: installProject
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public static boolean installProject(Context c, String from, String to) {
try {
FileIO.unZipFile(from, to);
return true;
} catch (ZipException e) {
e.printStackTrace();
}
return false;
}
示例13: unZipIt
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public void unZipIt(String zipFileName, String outputFolder) {
try {
ZipFile zipFile = new ZipFile(zipFileName);
zipFile.extractAll(outputFolder);
} catch (ZipException e) {
e.printStackTrace();
}
}
示例14: hasFile
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
/**
* 是否包含指定文件
*
* @param zipFile
* @param fileName
* @return
*/
public static boolean hasFile(File zipFile, String fileName){
try {
if(!FileHelper.exists(zipFile)){
return false;
}
return hasFile(new ZipFile(zipFile),fileName);
} catch (ZipException e) {
e.printStackTrace();
}
return false;
}
示例15: decompressFile
import net.lingala.zip4j.exception.ZipException; //导入方法依赖的package包/类
public static void decompressFile(String zipfile, String dir, boolean erase) {
try {
ZipFile zipFile = new ZipFile(zipfile);
zipFile.extractAll(dir);
if (erase) {
org.apache.commons.io.FileUtils.deleteQuietly(new File(zipfile));
}
} catch (ZipException e) {
e.printStackTrace();
}
}