gpt4 book ai didi

java - 无法找出 NullPointerException 错误

转载 作者:行者123 更新时间:2023-12-02 05:00:55 25 4
gpt4 key购买 nike

编辑:已解决

顺便说一句,如何暂停音频流?有没有办法,或者我只能杀死玩家?

我正在做的这个学校项目,是一个音乐播放器,使用的是 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();

随机按钮的 Action 监听器:

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”永远不会被打印。

另一个播放按钮的定义相同,并且 Action 监听器除了一个差异之外是相同的:

int w= playlist.getSelectedIndex();**THIS GIVES ME THE ERROR**

JComboBox“播放列表”的代码注意:此代码有效。它可以根据音频文件夹中的文件数量进行调整。注意#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();
}
}


}

最佳答案

您在GUI构造函数中设置的播放列表是构造函数中的局部变量,而不是字段。该字段从未初始化。在语句 JComboBox playlist = new JComboBox(item); 中,删除第一个 JComboBox,使其不是新变量的声明,而是引用。该行应为 playlist = new JComboBox(item);

关于java - 无法找出 NullPointerException 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28289368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com