Java之apk 解压、修改、打包、签名(1)--调用工具

[b]场景:[/b]
页面上传APK包及修改的内容(修改文件固定),修改完成后提供下载链接下载。


[b]实现步骤:[/b]
1、通过apktool工具,对APK包进行解压及打包(参考:[url]http://showlike.iteye.com/admin/blogs/1686103[/url])

2、文件内容的修改

3、通过JDK的jarsigner对修改后打包的APK进行签名(参考:[url]http://www.tttabc.com/android/keytool-keystore-jarsigner-apk.htm[/url])


[b]具体实现:[/b]

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;


/**
* @author showlike
* @version v1.0
* 2012-6-29 下午12:05:10
*/
public class Test {
public static void main(String args[]) throws IOException{
BufferedReader br =null;
OutputStreamWriter osw =null;
Process process = null;
try {

//1----解压
//apktool路径
String path = "D:\\My Documents\\Desktop\\apktool-install-windows-r04-brut1";
//保存路径
String appPath = "F:\\document\\APK\\new\\";
File file =new File(path);

process = Runtime.getRuntime().exec("cmd.exe /c apktool d "+appPath+"iGouShop.apk "+appPath+"app",null,file);
if(process.waitFor()!=0)System.out.println("解压失败。。。");

//2----内容修改
String targetPath = appPath+"app\\res\\raw\\channel";
String content="TT201209291653";
br = new BufferedReader(new InputStreamReader(new FileInputStream(targetPath)));
while((br.readLine())!=null)
{
osw = new OutputStreamWriter(new FileOutputStream(targetPath));
osw.write(content,0,content.length());
osw.flush();
}

//3----打包
process = Runtime.getRuntime().exec("cmd.exe /c apktool b "+appPath+"app "+appPath+"app.apk",null,file);
if(process.waitFor()!=0)System.out.println("打包失败。。。");

//4----签名 (文件名称中不能包含空格)
String jdkBinPath="C:\\Program Files\\Java\\jdk1.6.0_26\\bin";
File bin =new File(jdkBinPath);
String cmd = "cmd.exe /c jarsigner -keystore F:\\document\\APK\\sdk.keystore -storepass winadsdk -signedjar "+appPath+"appT.apk "+appPath+"\\app.apk"+" sdk.keystore";
process = Runtime.getRuntime().exec(cmd,null,bin);
if(process.waitFor()!=0)System.out.println("签名失败。。。");
}catch (Exception e)
{
e.printStackTrace();
}finally{
br.close();
osw.close();
}
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值