文档介绍:Java考核课程名称Java技术及其应用题目名称图形界面音频播放器学生学院计算机学院专业班级学号学生姓名指导教师2013年11月27日题目:编写一个图形界面多媒体应用程序,实现播放音频文件的功能。运行环境:Eclipse实现功能:可在列表中选择自己想听的歌曲,双击歌曲名即开始播放,中途可按stopPlay键停止播放,按playOnce键重新播放,按playLoop键循环播放当前歌曲。能在Applet窗口底部的状态位置显示Applet当前状态。源代码:packagehjh;;;;;;;;;;;;;;lassMySoundextendsAppletimplementsActionListener{ /** * */ privatestaticfinallongserialVersionUID=1L; AudioClipcurrent=null; Imageimage1,image2; ButtonplayOnce,stopPlay,playLoop; Panelpanel,panel2; Labellabel; Listlist1,list2; Stringstr; publicvoidinit() { setBackground(); setSize(400,400); setLayout(null); panel=newPanel(); panel2=newPanel(); (newGridLayout(1,4)); (400,30); (); (newGridLayout(1,2)); (0,270,400,140); add(panel); add(panel2); list1=newList(); list2=newList(); (this); (this); (); (); ("林俊杰-裂缝中的阳光"); ("林俊杰-修炼爱情"); ("林俊杰-因你而在"); ("林俊杰-零度的亲吻"); ("孙燕姿-天黑黑"); ("孙燕姿-开始懂了"