簡單音樂播放器 在工程根目錄下建立一個sounds文件夾,格式只能是wav格式 輸入想播放的歌名,然後自動播放 ...
簡單音樂播放器
在工程根目錄下建立一個sounds文件夾,格式只能是wav格式
輸入想播放的歌名,然後自動播放
public class Calendar { public static void main(String[] args) throws MalformedURLException{ Scanner in=new Scanner(System.in); String nei=in.next(); File sound= new File("sounds/"+nei+".wav"); AudioClip sound_choose= Applet.newAudioClip(sound.toURL()); sound_choose.play(); } }