请问怎么在JFrame中加载音乐文件.
写了一个,不知怎么改,请指教.谢谢.
package graphics_test;
/********************************
* author @scoladi
*
* Graphics_JFrame_test Graphics_test.java;
*
*******************************/
import java.awt.*;
import java.applet.*;
import java.io.*;//用来找那个文件路径的
import javax.swing.*;
import java.awt.event.*;
import java.net.MalformedURLException;
import java.net.URL;
public class Graphics_test extends JFrame{
JPanel_t jp;
Graphics_test()
{
try
{
jp=new JPanel_t();
}
catch(MalformedURLException m)
{
JOptionPane.showMessageDialog(null, "URL出错,不得不退出. ");//程序进入这里了.
try{ /*********************/
Thread.sleep(200);//用于控制其退出时间的.
} /********************/
catch(InterruptedException ine)//此处不能重名呀
{
JOptionPane.showMessageDialog(null, "线程控制出错,不得不退出! ");
System.exit(0);
}
dispose();
System.exit(0);
}
Container conx = this.getContentPane();
/*****************************/
conx.setLayout(new BorderLayout());//目地是把jpanel加载到整个框架之中
/*****************************/