0
我想使用Java運行時運行aapt。我的代碼如下:aapt使用Runtime.exec()
String srcFile = "/home/jay/testing_FILES.apk";
String dsFile = "/home/jay/testing_FILES";
String firstCommand = ("/home/jay/android-sdk-linux/platform-tools/aapt " +
"package -u -f -F" + srcFile + dsFile);
try {
Runtime rt = Runtime.getRuntime();
Runtime.getRuntime().exec(firstCommand);
} catch (IOException e1) {
e1.printStackTrace();
}
此代碼不會給我一個錯誤,但它也不給我任何結果。有關如何解決這個問題的任何想法?此外,這意味着可移植的代碼,所以如果有一種方法可以在沒有腳本的情況下執行,那將是首選。