我有以下代码来打开媒体文件:
public static void playMusic(File string, int time, String ProcessName) throws Exception {
Desktop d1 = Desktop.getDesktop();
d1.open(string);
Thread.sleep(time + 500);
kill(ProcessName);
}
然后我使用:
playMusic(FILELOCATION, FILELENGTH, PROCESSNAME);
这将打开媒体文件并播放其中的内容,然后关闭。我想知道是否有办法让媒体文件窗口出现时不可见。我真的不会让用户每次都看到 windows 媒体窗口弹出。