0
我試圖從Java程序中使用apktool
。我正在使用它來創建Web服務。但是,該命令不能從Java程序的shell中運行。無法在Java的shell上運行apktool命令
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中直接運行。