我正在尝试运行这个在运行时调用 shell 脚本的 java 代码。
当我在终端中运行脚本时,我将参数传递给脚本
代码:
./test.sh argument1
爪哇代码:
public class scriptrun
{
public static void main(String[] args)
{
try
{
Process proc = Runtime.getRuntime().exec("./test.sh");
System.out.println("Print Test Line.");
}
catch (Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
}
}
如何在java代码中为脚本传递参数?