所以我想得到一个我正在制作的游戏,当我打开它时开始播放音乐。我以前从来没有做过这样的事情,所以我想知道一些建议。考虑到我是菜鸟,我在网上找不到任何可以理解的东西,所以如果你能做到这一点并很好地解释它,那就太棒了。谢谢!哦,我可以在程序上发布您需要的任何信息。
主类看起来像:
package com.game.main.window;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import java.awt.event.ActionListener;
public abstract class Main extends JFrame implements ActionListener {
public static JFrame frame = new JFrame();
public static void main(String[] args) {
createWindow();
}
public static void createWindow() {
ImagePanel panel = new ImagePanel(
new ImageIcon(
"C:\\Users\\Austin\\Pictures\\My Pictures\\Le Parkour\\ABC0001.jpg")
.getImage());
frame.getContentPane().add(panel);
frame.setJMenuBar(MenuBar.menuBarCreator());
frame.pack();
frame.setTitle("*Game Title* Beta 0.0.1 ADMINISTRATOR VERSION");
frame.setSize(ImagePanel.img.getWidth(null),
ImagePanel.img.getHeight(null));
frame.setLocation(100, 100);
frame.setVisible(true);
frame.setResizable(false);
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
}