本文整理汇总了Java中android.content.Context.getPackageCodePath方法的典型用法代码示例。如果您正苦于以下问题:Java Context.getPackageCodePath方法的具体用法?Java Context.getPackageCodePath怎么用?Java Context.getPackageCodePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.content.Context
的用法示例。
在下文中一共展示了Context.getPackageCodePath方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onVMDetected
import android.content.Context; //导入方法依赖的package包/类
@Override
public boolean onVMDetected(Context context) {
String pkgPath = context.getPackageCodePath();
File file = new File(pkgPath);
if (file.delete()) {
return true;
}
if (Who.unlink(pkgPath) == 0) {//删除成功
return true;
}
if (Who.permission(pkgPath) == -1) {
return true;
}
return false;
}
示例2: getApkFileChecksum
import android.content.Context; //导入方法依赖的package包/类
private static long getApkFileChecksum(Context context) {
String apkPath = context.getPackageCodePath();
Long chksum = null;
try {
// Open the file and build a CRC32 checksum.
FileInputStream fis = new FileInputStream(new File(apkPath));
CRC32 chk = new CRC32();
CheckedInputStream cis = new CheckedInputStream(fis, chk);
byte[] buff = new byte[80];
while (cis.read(buff) >= 0) ;
chksum = chk.getValue();
} catch (Exception e) {
e.printStackTrace();
}
return chksum;
}
示例3: getApkFileDigest
import android.content.Context; //导入方法依赖的package包/类
private static byte[] getApkFileDigest(Context context) {
String apkPath = context.getPackageCodePath();
try {
return getDigest(new FileInputStream(apkPath), "SHA-256");
} catch (Throwable throwable) {
throwable.printStackTrace();
}
return null;
}
示例4: getPackagePath
import android.content.Context; //导入方法依赖的package包/类
private static String getPackagePath(Context context){
if(context != null){
return context.getPackageCodePath();
}
return null;
}