我想使用 java 程序启动 tomcat。
我已经使用下面的代码在 linux 中开始
String command = "c:\program files\tomcat\bin\startup.sh";
Process child = Runtime.getRuntime().exec(command);
它工作正常。
我在windows中使用了以下代码
String command = "c:/program files/tomcat/bin/startup.bat";
Process child = Runtime.getRuntime().exec(command);
它不工作。
我想为 Windows 配置任何其他属性吗?
提前致谢。