我正在尝试使用apktool
来自 Java 程序的。我正在使用它来创建 Web 服务。但是,此命令不会在 Java 程序的 shell 上运行。
String cmd = "apktool d /home/ridhima/Test.apk" ;
try {
Process p = Runtime.getRuntime().exec(cmd);
BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = "";
while((line = reader.readLine()) != null)
{
System.out.print(line + "\n");
}
p.waitFor();
}
catch (IOException | InterruptedException e1) {
e1.printStackTrace();
}
该命令直接从 shell 运行得很好。