编辑:已解决
旁注,我如何暂停音频流?有没有办法,或者我只能杀死玩家?
我正在做的这个学校项目,它是一个音乐播放器,它在BlueJ。 要求是使用组合框,播放按钮等显示表单。
我设法将我的音频播放列表添加到播放列表中,但是尝试更改 SelectedIndex 会给我带来问题。
例如,有两个播放按钮。一个是播放按钮 - 您播放播放列表中的第一首歌曲。 为此,我需要使用方法 GetSelectedIndex()来获取播放歌曲的索引。组合框中的项目与列出文件的顺序相同。
另一个按钮是播放随机按钮,一旦按下,它将在给定的库中播放随机歌曲。此按钮有效,但播放歌曲时,需要显示组合框中正在播放的歌曲。使用 SetSelectedIndex()方法。
两者都给了我 java.lang.NullPointerException 错误。 作为int值,我似乎无法弄清楚如何使“对象”实例化 - 这是其他答案所说的。 (关于其他问题)
随机按钮构造函数:(另一个按钮与此非常相似)
private JButton ranbutton;
ranbutton = new JButton();
ranbutton.setMargin(new Insets(0,0,0,0));
ranbutton.setText("ran");
ranbutton.addActionListener(sl);
ranbutton.setBounds(150,220,35,30);
ShuffleListener sl= new ShuffleListener();
随机按钮的动作侦听器:
private class ShuffleListener implements ActionListener
{
public void actionPerformed(ActionEvent t)
{
org.playrandom();
playlist.setSelectedIndex(1); **THIS GIVES ME THE ERROR**
System.out.println("Z");
}
因为它在设定的选定索引处给出了一个空错误,所以“Z”永远不会打印出来。
另一个播放按钮,定义相同,除了一个区别之外,动作监听器是相同的:
int w= playlist.getSelectedIndex();**THIS GIVES ME THE ERROR**
JComboBox“播放列表”的代码注意:此代码有效。它可以模拟音频文件夹中的文件数量。 note#2: org是组织者类的实例 - 它控制着所有内容并且有效。
public JComboBox playlist;
Integer[] nums;
x= org.getNumberOfTracks();
nums = new Integer[x];
String item[] = new String[x];
for(int i = 0 ; i < x; i++) {
item[i]= ((org.getName(i)));
}
JComboBox playlist = new JComboBox(item);
playlist.setBounds(50,50,250,50);
现在,有趣的是,如果我把
playlist.setSelectedIndex(4);
在构造函数的底部,并运行程序,组合框将设置为索引4(项目5)
我搞砸了一下,在调用代码时隔离代码,并使用System.Out.println()
查看代码是否正在通过。
但我无法弄清楚为什么它会在构造函数中调用而不是在ActionListener类中调用。
以下是所有代码,请原谅格式:
import java.util.ArrayList;
import java.util.Random;
import java.util.Iterator;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.Insets;
import java.lang.Integer;
public class GUI extends JFrame
{
private int x;
private int r;
private int p;
private String l;
private int n=0;
private JButton playbutton;
private JButton ranbutton;
private JButton prevbutton;
private JButton skipbutton;
private JButton stopbutton;
private JButton repeatbutton;
private static MusicOrganizer org;
public JComboBox playlist;
public boolean looper=false;
public static void main(String[] args)
{
new GUI();
}
public GUI()
{
org= new MusicOrganizer();
this.setSize(400,300);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle("Awesome Music Player");
this.setLocation(600,300);
JPanel panel= new JPanel();
panel.setLayout(null);
ButtonListener blp = new ButtonListener();
ShuffleListener sl= new ShuffleListener();
StopListener pl= new StopListener();
RepListener rp = new RepListener();
playbutton= new JButton();
playbutton.setMargin(new Insets(0,0,0,0));
playbutton.setText("►");
playbutton.addActionListener(blp);
playbutton.setBounds(35,215,40,40);
repeatbutton= new JButton();
repeatbutton.setMargin(new Insets(0,0,0,0));
repeatbutton.setText("○");
repeatbutton.addActionListener(rp);
repeatbutton.setBounds(190,220,35,30);
skipbutton = new JButton();
skipbutton.setMargin(new Insets(0,0,0,0));
skipbutton.setText(">>|");
skipbutton.setBounds(75,220,30,30);
prevbutton = new JButton();
prevbutton.setMargin(new Insets(0,0,0,0));
prevbutton.setText("|<<");
prevbutton.setBounds(5,220,30,30);
ranbutton = new JButton();
ranbutton.setMargin(new Insets(0,0,0,0));
ranbutton.setText("ran");
ranbutton.addActionListener(sl);
ranbutton.setBounds(150,220,35,30);
stopbutton= new JButton();
stopbutton.setMargin(new Insets(0,0,0,0));
stopbutton.setText("■");
stopbutton.addActionListener(pl);
stopbutton.setBounds(110,220,35,30);
Integer[] nums;
x= org.getNumberOfTracks();
nums = new Integer[x];
String item[] = new String[x];
for(int i = 0 ; i < x; i++)
{
item[i]= ((org.getName(i)));
}
JComboBox playlist = new JComboBox(item);
playlist.setBounds(50,50,250,50);
panel.add(skipbutton);
panel.add(prevbutton);
panel.add(playbutton);
panel.add(ranbutton);
panel.add(playlist);
panel.add(stopbutton);
panel.add(repeatbutton);
this.add(panel);
this.setVisible(true);
//playlist.setSelectedIndex(4);(the code that will work....)
}
public void u()
{
playlist.setSelectedIndex(1);//( temp testing)
}
public void q()
{
n=(int)playlist.getSelectedIndex();//( temp testing)
System.out.println(n);
}
private class ButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
if (x==1)
{
playbutton.setText("| |");
int w= playlist.getSelectedIndex(); //THIS GIVES ERROR
System.out.println(w);
x=0;
}
else
{
playbutton.setText("►");
x=1;
}
}
}
private class ShuffleListener implements ActionListener
{
public void actionPerformed(ActionEvent t)
{
org.playrandom();
u();//-> method is playlist.setSelectedIndex(1); gives me the error
System.out.println("I");
}
}
private class StopListener implements ActionListener
{
public void actionPerformed(ActionEvent c)
{
org.stopPlaying();
}
}
}
答案 0 :(得分:2)
您在playlist
构造函数中设置的GUI
是构造函数中的局部变量,而不是字段。该字段从未初始化。在语句JComboBox playlist = new JComboBox(item);
中删除第一个JComboBox
,使其不是新变量的声明,而是引用。该行应为playlist = new JComboBox(item);