现在我正在从事自动化项目。在那我有一个测试用例和测试用例是我必须确保一个Windows媒体播放器。我试了很多,但我不能......
帮助我,我正处于项目截止日期。
提前致谢...
答案 0 :(得分:0)
final String wmp = "C:\\Program Files\\Windows Media Player\\wmplayer.exe";
运行WMP
Runtime.exec(wmp);
或确保该路径存在......
System.out.println(new File(wmp).exists());
当然,这在Windows XP上是正确的,您可能需要调整x64 Windows或Windows Vista +的路径。这可能对原因有所帮助:
final String os = System.getProperty("os.name") + " " + System.getProperty("os.arch");
System.out.println(os);