首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Java > 简单的工具来标志一个罐子

简单的工具来标志一个罐子

  • 资源大小:8.16 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: 简单 工具 一个 标志 罐子

资 源 简 介

create a signed jar in quick way. It can run directly on android devices. Here is an example ``` // sign asset/unsigned.apk and install it public void a(Context ctx, File orgJar) { // create a tmp dir for extract content in unsigend.jar final File dir = ctx.getDir("tmp", Context.MODE_PRIVATE); InputStream in = ctx.getAssets().open("unsigned.apk"); // do extract to tmp dir extract(in, dir); in.close(); File distFile = ctx.getFileStreamPath("signed.apk"); FileOutputStream fos = new FileOutputStream(distFile); // do sign TinySign.sign(dir, fos); fos.close(); // install it Intent promptInstall = new Intent(Intent.ACTION_VIEW); promptInstall.setDataAndType(Uri.fromFile(distFile), "application/vnd.android.package-archive"); ctx.startActivity(promptInstall); } public static void extract(InputStream in, File dir) throws IOException { ZipInputStream zis = new ZipInputStream(in); for (ZipEntry e = zis.getNextEntry(); e !

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
  • 猕猴桃 3小时前 成为了本站会员

  • 11 6小时前 成为了本站会员

  • 开心快活人 9小时前 成为了本站会员

  • 晋财 10小时前 成为了本站会员

  • WYG 1天前 成为了本站会员

  • Shine 1天前 成为了本站会员

  • 柳贻 1天前 成为了本站会员

  • hallelujah_HL 1天前 成为了本站会员

  • 焦昱贺 1天前 成为了本站会员

  • Rubin 1天前 成为了本站会员

0.186007s