我目前的班级位于下方,我只是想知道我是否有办法从拥有音乐播放列表的网站上获取网址并使用该网址,而不必将.wav文件保存在我的项目文件夹中。这是我目前这个音响系统的具体课程。 希望我能得到一些反馈,我试图尽可能地保持我的项目文件夹的文件大小!提前谢谢。
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package GUI.Music;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import javax.swing.JOptionPane;
import sun.audio.AudioPlayer;
import sun.audio.AudioStream;
/**
*
* @author Mod Den
*/
public class MusicPlayer {
public static void sound(){
InputStream in;
try{
in = new FileInputStream(new File("C:\\Users\\Mod Den\\Documents\\NetBeansProjects\\JavaApplication18\\dist\\lib\\music.wav"));
AudioStream audios = new AudioStream(in);
AudioPlayer.player.start(audios);
}
catch(Exception e){
JOptionPane.showMessageDialog(null,e);
}
}
}