Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 JUnit4 测试我的 java 应用程序,但我的应用程序使用 .bat 文件运行。我需要在 @Before 方法中运行这个 .bat 文件,但我不知道该怎么做。
你能帮助我吗?
谢谢。
这个:
Runtime.getRuntime().exec("cmd /c start filename.bat");
应该做魔术;)
有关更多信息,请参阅:Java 文档:运行时