| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1583 人关注过本帖
标题:今天编辑了一个播放mid音乐的程序,呵呵,,分享一下我的快乐!
取消只看楼主 加入收藏
baixiaotian
Rank: 1
等 级:新手上路
帖 子:25
专家分:0
注 册:2005-4-9
收藏
 问题点数:0 回复次数:1 
今天编辑了一个播放mid音乐的程序,呵呵,,分享一下我的快乐!

今天编辑了一个播放mid音乐的程序,呵呵, 分享一下我的快乐! 祝大家学习进步! import java.awt.event.*; import javax.swing.*; import javax.sound.midi.*; import java.awt.*; import java.io.*;

public class TestPlay extends JFrame implements ActionListener { JButton startButton = new JButton("Start"); JButton stopButton = new JButton("Stop"); Player playBar = new Player(); JLabel label = new JLabel("name",SwingConstants.LEFT); JTextField text = new JTextField("Enter music name:",SwingConstants.RIGHT); public TestPlay() { super("Playing music"); setSize(235,90); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); BorderLayout bord = new BorderLayout(); GridLayout layout = new GridLayout(1,2); JPanel pane1 = new JPanel(); JPanel pane2 = new JPanel(); pane1.setLayout(layout); pane2.setLayout(layout); startButton.addActionListener(this); stopButton.addActionListener(this); startButton.setEnabled(true); stopButton.setEnabled(false); pane1.add(label); playBar.name = text.getText(); pane1.add(text); pane2.add(startButton); pane2.add(stopButton); JPanel pane = new JPanel(); pane.setLayout(bord); pane.add("Center",pane1); pane.add("South",pane2); setContentPane(pane); show(); } public void actionPerformed(ActionEvent evt) { Object src = evt.getSource(); if(src==startButton){ playBar.name = text.getText(); playBar.play(); startButton.setEnabled(false); stopButton.setEnabled(true); } else if(src==stopButton){ playBar.stop(); startButton.setEnabled(true); stopButton.setEnabled(false); } } public static void main(String[] args){ try{ UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName() ); }catch(Exception e){} TestPlay frame = new TestPlay(); } }

class Player implements Runnable { Thread runner; String name = null; Sequencer sound; Sequence soundname; File file; void play(){ if(runner==null){ runner = new Thread(this); runner.start(); } } void stop(){ if(runner!=null) sound.close(); runner = null; } public void run() { try{ sound = MidiSystem.getSequencer(); file = new File(name); soundname = MidiSystem.getSequence(file); sound.open(); sound.setSequence(soundname); sound.start(); while(sound.isRunning()){ try{ Thread.sleep(1000); }catch(Exception e){ System.out.println("some problems happended in this programe"); } } sound.close(); }catch(Exception e){ System.out.println("can't play the music" + e.getMessage()); } } }

搜索更多相关主题的帖子: 音乐 mid 快乐 播放 
2005-05-08 20:48
baixiaotian
Rank: 1
等 级:新手上路
帖 子:25
专家分:0
注 册:2005-4-9
收藏
得分:0 
估计是你的按钮动作不能响应

我很菜,所以我经常有问题,请不要介意我问得多,问得勤,谢谢!
2005-05-19 18:37
快速回复:今天编辑了一个播放mid音乐的程序,呵呵,,分享一下我的快乐!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015601 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved