在src下面建一個文件夾music放音樂如withoutYou.mp3
目前創(chuàng)新互聯(lián)公司已為上1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機、綿陽服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計、陽春網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
try{
java.net.URL musicPath=MyActionListener.class.getResource("/music/withoutYou.mp3");
System.out.println(musicPath);
music= java.applet.Applet.newAudioClip(musicPath);
music.loop();//循環(huán)播放
}catch( Exception ef){
javax.swing.JOptionPane.showMessageDialog(null, "音樂播放失敗");
}
絕對可以;
不行找我; qq983714669;要給我80分;
java好像只支持wav格式的音樂文件,你可以用 格式化工廠 轉(zhuǎn)換一下。。再用下面代碼:
import java.applet.Applet;
import java.applet.AudioClip;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.net.URI;
import java.net.URL;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class f extends JFrame implements ActionListener {
private static final String AudioClip = null;
private JButton Oj;
private JButton Oj1;
AudioClip clip =null;
File musicFile;
URI uri;
URL url;
private void f() throws InterruptedException{
musicFile = new File("/zxc.wav");
uri = musicFile.toURI();
try {
url = uri.toURL();
} catch (Exception e) {
}
clip=Applet.newAudioClip(url);
//clip.play();
}
f() {
this.setSize(800, 600);
this.setResizable(false);
JPanel p = new JPanel();
this.setContentPane(p);
this.setVisible(true);
Oj = new JButton("開始");
Oj1 = new JButton("結(jié)束");
this.setVisible(true);
Oj.addActionListener(this);
Oj1.addActionListener(this);
this.add(Oj);
this.add(Oj1);
}
public static void main(String[] args) throws InterruptedException {
f ff=new f();
ff.f();
}
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
if (e.getSource() == Oj) {
play();
} else if (e.getSource() == Oj1) {
stop();
//System.exit(0);
}
}
public void play() {
if (clip != null)
( (java.applet.AudioClip) clip).play();
}
public void stop() {
if (clip != null)
( (java.applet.AudioClip) clip).stop();
}
}
只要在HTML上添加以上代碼就OK了,前提是電腦上已經(jīng)安裝了播放器,如RealPlay。
embed
src="C:/mp3/10.19/畫心.mp3"
width="480"
height="100"
loop="false"
autostart="false"
/embed
更多設(shè)置如下:
1、如果要播放rm,ra,ram類型的音樂,代碼如下:
embed
width="0"
height="0"
type="audio/x-pn-realaudio-plugin"
autostart="true"
controls="ControlPanel"
src="";
2、
如果要播放midi,asf,wma,asx類型的音樂,代碼如下:
embed
autostart="true"
loop="-1"
controls="ControlPanel"
width="0"
height="0"
src="";
只需要把整段代碼copy復(fù)制到文章中(編輯文章的時請先點擊HTML代碼模式再粘貼代碼,否則這段代碼會以文本形式顯示出來,不能被執(zhí)行),用你喜歡及可用的音樂文件的URL(網(wǎng)址)代替上面白色顯示的音樂地址代碼就可以了。
不知道你是在java里哪添加?Swing界面中嗎?
下面這個是我之前做Swing界面程序時添加音樂的代碼,希望對你有幫助
AudioClip[] musics;//定義音樂集合
musics = new AudioClip[2];//初始化
URL url1 = this.getClass().getResource("/ReadyGo.WAV"); //定義音樂文件地址
URL url2 = this.getClass().getResource("/back1.mid"); //定義音樂文件地址
musics[0] = JApplet.newAudioClip(url1);
musics[1] = JApplet.newAudioClip(url2);
musics[0].play();//音樂開始執(zhí)行
musics[1].stop();//停止播放
package?jmf.com;
import?java.awt.BorderLayout;
import?java.awt.Component;
import?java.awt.FileDialog;
import?java.awt.event.ActionEvent;
import?java.awt.event.ActionListener;
import?java.awt.event.ItemEvent;
import?java.awt.event.ItemListener;
import?java.awt.event.WindowAdapter;
import?java.awt.event.WindowEvent;
import?javax.media.ControllerClosedEvent;
import?javax.media.ControllerEvent;
import?javax.media.ControllerListener;
import?javax.media.EndOfMediaEvent;
import?javax.media.Manager;
import?javax.media.MediaLocator;
import?javax.media.NoPlayerException;
import?javax.media.Player;
import?javax.media.PrefetchCompleteEvent;
import?javax.media.RealizeCompleteEvent;
import?javax.media.Time;
import?javax.swing.JCheckBoxMenuItem;
import?javax.swing.JFrame;
import?javax.swing.JMenu;
import?javax.swing.JMenuBar;
import?javax.swing.JMenuItem;
import?javax.swing.SwingUtilities;
import?javax.swing.UIManager;
public?class?JMFMediaPlayer?extends?JFrame?implements?ActionListener,
ControllerListener,?ItemListener?{
//?JMF的播放器
Player?player;
//?播放器的視頻組件和控制組件
Component?vedioComponent;
Component?controlComponent;
//?標(biāo)示是否是第一次打開播放器
boolean?first?=?true;
//?標(biāo)示是否需要循環(huán)
boolean?loop?=?false;
//?文件當(dāng)前目錄
String?currentDirectory;
//?構(gòu)造方法
public?JMFMediaPlayer(String?title)?{
super(title);
addWindowListener(new?WindowAdapter()?{
public?void?windowClosing(WindowEvent?e){
//?用戶點擊窗口系統(tǒng)菜單的關(guān)閉按鈕
//?調(diào)用dispose以執(zhí)行windowClosed
dispose();
}
public?void?windowClosed(WindowEvent?e){
if?(player?!=?null){
//?關(guān)閉JMF播放器對象
player.close();
}
System.exit(0);
}
});
//?創(chuàng)建播放器的菜單
JMenu?fileMenu?=?new?JMenu("文件");
JMenuItem?openMemuItem?=?new?JMenuItem("打開");
openMemuItem.addActionListener(this);
fileMenu.add(openMemuItem);
//?添加一個分割條
fileMenu.addSeparator();
//?創(chuàng)建一個復(fù)選框菜單項
JCheckBoxMenuItem?loopMenuItem?=?new?JCheckBoxMenuItem("循環(huán)",?false);
loopMenuItem.addItemListener(this);
fileMenu.add(loopMenuItem);
fileMenu.addSeparator();
JMenuItem?exitMemuItem?=?new?JMenuItem("退出");
exitMemuItem.addActionListener(this);
fileMenu.add(exitMemuItem);
JMenuBar?menuBar?=?new?JMenuBar();
menuBar.add(fileMenu);
this.setJMenuBar(menuBar);
this.setSize(200,?200);
try?{
//?設(shè)置界面的外觀,為系統(tǒng)外觀
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
SwingUtilities.updateComponentTreeUI(this);
}?catch?(Exception?e)?{
e.printStackTrace();
}
this.setVisible(true);
}
/**
*?實現(xiàn)了ActionListener接口,處理組件的活動事件
*/
public?void?actionPerformed(ActionEvent?e)?{
if?(e.getActionCommand().equals("退出"))?{
//?調(diào)用dispose以便執(zhí)行windowClosed
dispose();
return;
}
FileDialog?fileDialog?=?new?FileDialog(this,?"打開媒體文件",?FileDialog.LOAD);
fileDialog.setDirectory(currentDirectory);
fileDialog.setVisible(true);
//?如果用戶放棄選擇文件,則返回
if?(fileDialog.getFile()?==?null){
return;
}
currentDirectory?=?fileDialog.getDirectory();
if?(player?!=?null){
//?關(guān)閉已經(jīng)存在JMF播放器對象
player.close();
}
try?{
//?創(chuàng)建一個打開選擇文件的播放器
player?=?Manager.createPlayer(new?MediaLocator("file:"
+?fileDialog.getDirectory()?+?fileDialog.getFile()));
}?catch?(java.io.IOException?e2)?{
System.out.println(e2);
return;
}?catch?(NoPlayerException?e2)?{
System.out.println("不能找到播放器.");
return;
}
if?(player?==?null)?{
System.out.println("無法創(chuàng)建播放器.");
return;
}
first?=?false;
this.setTitle(fileDialog.getFile());
//?播放器的控制事件處理
player.addControllerListener(this);
//?預(yù)讀文件內(nèi)容
player.prefetch();
}
/**
*?實現(xiàn)ControllerListener接口的方法,處理播放器的控制事件
*/
public?void?controllerUpdate(ControllerEvent?e)?{
//?調(diào)用player.close()時ControllerClosedEvent事件出現(xiàn)。
//?如果存在視覺部件,則該部件應(yīng)該拆除(為一致起見,
//?我們對控制面板部件也執(zhí)行同樣的操作)
if?(e?instanceof?ControllerClosedEvent)?{
if?(vedioComponent?!=?null)?{
this.getContentPane().remove(vedioComponent);
this.vedioComponent?=?null;
}
if?(controlComponent?!=?null)?{
this.getContentPane().remove(controlComponent);
this.controlComponent?=?null;
}
return;
}
//?如果是媒體文件到達(dá)尾部事件
if?(e?instanceof?EndOfMediaEvent)?{
if?(loop)?{
//?如果允許循環(huán),則重新開始播放
player.setMediaTime(new?Time(0));
player.start();
}
return;
}
//?如果是播放器預(yù)讀事件
if?(e?instanceof?PrefetchCompleteEvent)?{
//?啟動播放器
player.start();
return;
}
//?如果是文件打開完全事件,則顯示視頻組件和控制器組件
if?(e?instanceof?RealizeCompleteEvent)?{
vedioComponent?=?player.getVisualComponent();
if?(vedioComponent?!=?null){
this.getContentPane().add(vedioComponent);
}
controlComponent?=?player.getControlPanelComponent();
if?(controlComponent?!=?null){
this.getContentPane().add(controlComponent,?BorderLayout.SOUTH);
}
this.pack();
}
}
//?處理“循環(huán)”復(fù)選框菜單項的點擊事件
public?void?itemStateChanged(ItemEvent?e)?{
loop?=?!loop;
}
public?static?void?main(String[]?args){
new?JMFMediaPlayer("JMF媒體播放器");
}
}