我当前的课程位于下面,我只是想知道是否有任何方法可以让我从具有音乐播放列表的站点中获取 URL 并使用它,而不必在我的项目文件夹中保留 .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);
}
}
}