我无法从我的 java 代码中调用 shell 脚本。这是我的代码。谁能让我知道我在这里缺少什么。
protected boolean shellExecute() throws InterruptedException {
try {
Process p = Runtime.getRuntime().exec("/home/baibhav/try_scripts/javacall.sh");
} catch (IOException e) {
e.printStackTrace();
return false;
}
return true;
}