Android解析包名信息

public ApplicationRet.Application getApkFileInfo(Context ctx, String apkPath) {
		File apkFile = new File(apkPath);
		if (!apkFile.exists() || !apkPath.toLowerCase().endsWith(".apk")) {
			return null;
		}
		ApplicationRet.Application appInfoData;
		String PATH_PackageParser = "android.content.pm.PackageParser";
		String PATH_AssetManager = "android.content.res.AssetManager";
		try {
			// 反射得到pkgParserCls对象并实例化,有参数
			Class<?> pkgParserCls = Class.forName(PATH_PackageParser);
			Class<?>[] typeArgs = { String.class };
			Constructor<?> pkgParserCt = pkgParserCls.getConstructor(typeArgs);
			Object[] valueArgs = { apkPath };
			Object pkgParser = pkgParserCt.newInstance(valueArgs);

			// 从pkgParserCls类得到parsePackage方法
			DisplayMetrics metrics = new DisplayMetrics();
			metrics.setToDefaults();// 这个是与显示有关的, 这边使用默认
			typeArgs = new Class<?>[] { File.class, String.class,
					DisplayMetrics.class, int.class };
			Method pkgParser_parsePackageMtd = pkgParserCls.getDeclaredMethod(
					"parsePackage", typeArgs);

			valueArgs = new Object[] { new File(apkPath), apkPath, metrics, 0 };

			// 执行pkgParser_parsePackageMtd方法并返回
			Object pkgParserPkg = pkgParser_parsePackageMtd.invoke(pkgParser,
					valueArgs);

			// 从返回的对象得到名为"applicationInfo"的字段对象
			if (pkgParserPkg == null) {
				return null;
			}
			Field appInfoFld = pkgParserPkg.getClass().getDeclaredField(
					"applicationInfo");

			// 从对象"pkgParserPkg"得到字段"appInfoFld"的值
			if (appInfoFld.get(pkgParserPkg) == null) {
				return null;
			}
			ApplicationInfo info = (ApplicationInfo) appInfoFld
					.get(pkgParserPkg);

			// 反射得到assetMagCls对象并实例化,无参
			Class<?> assetMagCls = Class.forName(PATH_AssetManager);
			Object assetMag = assetMagCls.newInstance();
			// 从assetMagCls类得到addAssetPath方法
			typeArgs = new Class[1];
			typeArgs[0] = String.class;
			Method assetMag_addAssetPathMtd = assetMagCls.getDeclaredMethod(
					"addAssetPath", typeArgs);
			valueArgs = new Object[1];
			valueArgs[0] = apkPath;
			// 执行assetMag_addAssetPathMtd方法
			assetMag_addAssetPathMtd.invoke(assetMag, valueArgs);

			// 得到Resources对象并实例化,有参数
			Resources res = ctx.getResources();
			typeArgs = new Class[3];
			typeArgs[0] = assetMag.getClass();
			typeArgs[1] = res.getDisplayMetrics().getClass();
			typeArgs[2] = res.getConfiguration().getClass();
			Constructor<Resources> resCt = Resources.class
					.getConstructor(typeArgs);
			valueArgs = new Object[3];
			valueArgs[0] = assetMag;
			valueArgs[1] = res.getDisplayMetrics();
			valueArgs[2] = res.getConfiguration();
			res = (Resources) resCt.newInstance(valueArgs);
			
			PackageManager pm = ctx.getPackageManager();
			// 读取apk文件的信息
			appInfoData = new ApplicationRet.Application();
			if (info != null) {
				if (info.icon != 0) {// 图片存在,则读取相关信息
					Drawable icon = res.getDrawable(info.icon);// 图标
					appInfoData.setLocalAppIcon(icon);
				}
				if (info.labelRes != 0) {
					String name = (String) res.getText(info.labelRes);// 名字
					appInfoData.setTitle(name);
				} else {
					String loadLabelName = info.loadLabel(pm).toString();
					if(loadLabelName == null || "".equals(loadLabelName)) {
						String apkName = apkFile.getName();
						appInfoData.setTitle(apkName.substring(0,
								apkName.lastIndexOf(".")));
					} else {
						appInfoData.setTitle(loadLabelName);
					}
				}
				String pkgName = info.packageName;// 包名
				appInfoData.setPkg(pkgName);
			} else {
				return null;
			}
			
			PackageInfo packageInfo = pm.getPackageArchiveInfo(apkPath,
					PackageManager.GET_ACTIVITIES);
			if (packageInfo != null) {
				appInfoData.setVersionName(packageInfo.versionName);
				appInfoData.setVersion(packageInfo.versionCode);// 版本码
			}
			appInfoData
					.setIsAppFlag(ActionController.manager_download_app_flag_downloaded);
			return appInfoData;
		} catch (Exception e) {
			e.printStackTrace();
		}
		return null;
	}



if (info.labelRes != 0) {
					String name = (String) res.getText(info.labelRes);// 名字
					appInfoData.setTitle(name);
				} else {
					String loadLabelName = info.loadLabel(pm).toString();
					if(loadLabelName == null || "".equals(loadLabelName)) {
						String apkName = apkFile.getName();
						appInfoData.setTitle(apkName.substring(0,
								apkName.lastIndexOf(".")));
					} else {
						appInfoData.setTitle(loadLabelName);
					}
				}
注意红色标注部分,在取apk应用程序名的时候,采用 info.labelRes方法 有可能取不到,原因是开发者没有将应用程序的应用名写到String.xml中,
而是直接写到了AndroidManifest.xml中的label标签中,如:android:label="包名", 这样用info.labelRes就获取不到,只能用info.loadLabel()方法。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值