java簡(jiǎn)單播放器源碼

上傳人:1666****666 文檔編號(hào):37656746 上傳時(shí)間:2021-11-04 格式:DOC 頁(yè)數(shù):7 大?。?3.51KB
收藏 版權(quán)申訴 舉報(bào) 下載
java簡(jiǎn)單播放器源碼_第1頁(yè)
第1頁(yè) / 共7頁(yè)
java簡(jiǎn)單播放器源碼_第2頁(yè)
第2頁(yè) / 共7頁(yè)
java簡(jiǎn)單播放器源碼_第3頁(yè)
第3頁(yè) / 共7頁(yè)

下載文檔到電腦,查找使用更方便

0 積分

下載資源

還剩頁(yè)未讀,繼續(xù)閱讀

資源描述:

《java簡(jiǎn)單播放器源碼》由會(huì)員分享,可在線閱讀,更多相關(guān)《java簡(jiǎn)單播放器源碼(7頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。

1、import java.awt.BorderLayout; import javax.media.Manager; import javax.media.NoPlayerException; import javax.media.Player; import javax.sound.sampled.AudioFormat; import javax.sound.sampled.AudioSystem; import javax.sound.sampled.DataLine; import javax.sound.sampled.SourceDataLine; import

2、javax.swing.ImageIcon; import javax.swing.JFileChooser; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JFrame; import javax.swing.JScrollPane; import java.awt.Rectangle; import javax.swing.JTable; import java.awt.Dimension; import javax.swing.JTextPane; import jav

3、ax.swing.JScrollBar; import java.awt.List; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.io.IOException; import .MalformedURLException; import javax.swing.JButton; import javax.swing.filechooser.FileNameExtensionFilter; public

4、class Hello extends JFrame implements ActionListener { private static final long serialVersionUID = 1L; private JPanel jContentPane = null; private List list = null; private JButton jButton = null; private Player play; // @jve:decl-index=0: private String str = null; priv

5、ate JButton jButton1 = null; private JButton jButton2 = null; private boolean b=false; private static SourceDataLine objSDL; private JButton jButton3 = null; /** * This is the default constructor */ public Hello() { super(); ImageIcon backIcon = new ImageIcon(getClass().g

6、etResource( "/image/hehe.jpg")); final JLabel backLabel = new JLabel(backIcon); // 創(chuàng)建背景標(biāo)簽 backLabel.setSize(backIcon.getIconWidth(), backIcon.getIconHeight()); backLabel.setLocation(0, 0); this.add(backLabel); initialize(); } /** * This method initializes this * *

7、 @return void */ private void initialize() { this.setSize(594, 346); this.setContentPane(getJContentPane()); this.setTitle("達(dá)達(dá)播放器"); setVisible(true); } /** * This method initializes jContentPane * * @return javax.swing.JPanel */ // Start Output /** * 打

8、開音頻設(shè)備. * @param intFreq 采樣率。 * @param iBits PCM位深(例如16)。 * @param channels 聲道數(shù) */ private JPanel getJContentPane() { if (jContentPane == null) { jContentPane = new JPanel(); jContentPane.setLayout(null); jContentPane.add(getList(), null); jContentPane.add(getJButton()

9、, null); jContentPane.add(getJButton1(), null); jContentPane.add(getJButton2(), null); jContentPane.add(getJButton3(), null); } return jContentPane; } public void play(String str, List list) { File ff = new File(str + list.getSelectedItem()); try { play = Manager.cr

10、eatePlayer(ff.toURL()); } catch (NoPlayerException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } catch (MalformedURLException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } catch (IOException e1) { // TODO Auto-generated catch block

11、 e1.printStackTrace(); } play.start(); } /** * This method initializes list * * @return java.awt.List */ private List getList() { if (list == null) { list = new List(); list.setBounds(new Rectangle(67, 16, 425, 206)); list.addItemListener(new java.awt.ev

12、ent.ItemListener() { public void itemStateChanged(java.awt.event.ItemEvent e) { if (play == null) { play(str, list); b=true; } else { play.close(); play(str, list); } } }); } return list; } /** * This method initializes

13、 jButton * * @return javax.swing.JButton */ private JButton getJButton() { if (jButton == null) { jButton = new JButton(); jButton.setBounds(new Rectangle(15, 244, 128, 31)); jButton.setText("添加歌曲文件夾"); jButton.addActionListener(this); } return jButton; }

14、 public void actionPerformed(ActionEvent e) { JFileChooser jchoose = new JFileChooser(); jchoose.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); FileNameExtensionFilter filter = new FileNameExtensionFilter("MP3", "MP3"); jchoose.setMultiSelectionEnabled(true);// 選擇文件夾 jcho

15、ose.setFileFilter(filter); jchoose.setMultiSelectionEnabled(true); jchoose.showOpenDialog(this); if (jchoose.getSelectedFile() != null) { if (list != null) list.clear(); File file = jchoose.getSelectedFile(); str = jchoose.getCurrentDirectory() + jchoose.getSelected

16、File().getName() + "\\"; File f[] = file.listFiles(); for (int i = 0; i < f.length; i++) { if (f[i].getName().endsWith(".mp3")) list.add(f[i].getName()); } } } /** * This method initializes jButton1 * * @return javax.swing.JButton */ private JButton

17、 getJButton1() { if (jButton1 == null) { jButton1 = new JButton(); jButton1.setBounds(new Rectangle(155, 246, 115, 30)); jButton1.setText("隨機(jī)播放"); jButton1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) {

18、 // Thread Haha=new RadamPlay(list); // Haha.start(); } }); } return jButton1; } /** * This method initializes jButton2 * * @return javax.swing.JButton */ private JButton getJButton2() { if (jButton2 == null) { jButton2 = new JButton(); jButto

19、n2.setBounds(new Rectangle(280, 246, 81, 30)); jButton2.setText("暫停"); jButton2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { if(play!=null) { play.stop(); } } });

20、 } return jButton2; } /** * This method initializes jButton3 * * @return javax.swing.JButton */ private JButton getJButton3() { if (jButton3 == null) { jButton3 = new JButton(); jButton3.setBounds(new Rectangle(380, 247, 89, 29)); jButton3.setText("播放");

21、 jButton3.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { if(play!=null) { play.start(); } else { play(str, list); } } }); } return jButton3; } public static void main(String args[]) { new Hello(); } } // @jve:decl-index=0:visual-constraint="47,10"

展開閱讀全文
溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號(hào):ICP2024067431號(hào)-1 川公網(wǎng)安備51140202000466號(hào)


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng),我們立即給予刪除!