gpt4 book ai didi

java - 向 JList 添加项目导致 java.lang.NullPointerException

转载 作者:行者123 更新时间:2023-12-01 11:20:06 24 4
gpt4 key购买 nike

我已经在我的代码中寻找一个问题超过4个小时了,但找不到它...问题是,我有一个带有一个JFrame的java类,我在其中放置了带有DefaultListModel的JList 。然后我有另一个 java 类,我尝试将项目添加到 DefaultListModel 中。问题是,除了将项目添加到 DefaultListModel 之外,一切正常。关于这里出了什么问题有什么想法吗?

主java类:

package ledpanelplayer;

imports; //IMPORTS

/**
*
* @author Dominik
*/
public class LedPanelPlayer extends JFrame {

public static String RUN_PATH;
public static String LIB_PATH;
public static String PREFERENCES_FILE;
public static String LOG_FILE;

public static file_helper f;
public static json_helper j;
public static Player player;
public static Preferences preferences;
public static Schedule s;
public static Console c;

public static JFrame WINDOW_FRAME;
public static int WINDOW_W;
public static int WINDOW_H;
public static String WINDOW_TITLE;

public static JList SCHEDULE_LIST;
public static DefaultListModel SCHEDULE_LIST_MODEL;

public static void main(String[] args) {
setLookAndFeel();
setUIFont(new javax.swing.plaf.FontUIResource("Arial",Font.PLAIN,12));
init(); //Init application
}

private static void setLookAndFeel() {} //Doesn't matter
public static void setUIFont (javax.swing.plaf.FontUIResource f){} //Doesn't matter

public static void init() {
RUN_PATH = new File("").getAbsolutePath()+"\\"; //Get local directory
LIB_PATH = RUN_PATH + "\\lib"; //Set libs directory
PREFERENCES_FILE = RUN_PATH + "\\preferences.lpp"; //Set preferences file path
LOG_FILE = RUN_PATH + "\\log.txt"; //Set log file path

f = new file_helper(); //Create new file_helper()
c = new Console(); //Create new Console()
c.init_files();
j = new json_helper(); //Create new json_helper()
player = new Player(); //Create new Player()
preferences = new Preferences(); //Create new Preferences()
s = new Schedule(); //Create new Schedule()

WINDOW_FRAME = new JFrame(); //Create new JFrame()
WINDOW_W = 800;
WINDOW_H = 540;
WINDOW_TITLE = "Demo";

WINDOW_FRAME.setSize(WINDOW_W,WINDOW_H);
WINDOW_FRAME.setLocationRelativeTo(null);
WINDOW_FRAME.setVisible(true);
WINDOW_FRAME.setTitle(WINDOW_TITLE);
WINDOW_FRAME.setDefaultCloseOperation(EXIT_ON_CLOSE);
WINDOW_FRAME.getContentPane().setLayout(null);
WINDOW_FRAME.getContentPane().setBackground(new Color(237, 237, 237));
WINDOW_FRAME.setResizable(false);

SCHEDULE_LIST_MODEL = new DefaultListModel();
SCHEDULE_LIST = new JList(SCHEDULE_LIST_MODEL); //Create new JList()
SCHEDULE_LIST.setBounds(20, 20, 382, 444);
SCHEDULE_LIST.setBackground(new Color(226,226,226));
//SCHEDULE_LIST_MODEL.addElement("<html><b>1.</b> Demo <p> duration: 10s | file: demo.mp4 | repeat: *36000</p></html>");
WINDOW_FRAME.add(SCHEDULE_LIST);
}

public static void addElement(String e) {
SCHEDULE_LIST_MODEL.addElement(e);
}
}

其他类:

public static void updateList() {
for (int i = 0; i < SCHEDULE.size(); i++) {
try {
JSONObject object = (JSONObject)SCHEDULE.get(i);
String name = object.get("name").toString();
String duration = object.get("duration").toString();
String file = object.get("file").toString();
String repeat = object.get("repeat").toString();
LedPanelPlayer.addElement("<html><b>"+i+".</b> "+name+" <p> duration: "+(Integer.parseInt(duration)/1000)+"s | file: "+file+" | repeat: *"+repeat+"</p></html>");
}
catch(Exception e) {e.printStackTrace();c.err("Schedule.updateList() : " + e.toString());}
}
}

提前谢谢您!

堆栈跟踪:

java.lang.NullPointerException
at ledpanelplayer.LedPanelPlayer.addElement(LedPanelPlayer.java:369)
at ledpanelplayer.Schedule.updateList(Schedule.java:69)
at ledpanelplayer.Preferences.load(Preferences.java:50)
at ledpanelplayer.LedPanelPlayer.init(LedPanelPlayer.java:142)
at ledpanelplayer.LedPanelPlayer.main(LedPanelPlayer.java:98)

最佳答案

虽然 VGR 的答案(移动 SCHEDULE_LIST_MODEL 以便在初始化首选项时它不为空)确实解决了您眼前的问题,但我认为您遇到的问题仅仅是循环依赖问题的症状,这将使维护您的程序变得乏味(正如您花了大约 4 个小时发现的那样),简单地移动 SCHEDULE_LIST_MODEL 被分配值的位置最多只是一个创可贴修复。

你的程序结构如下:LedPanelPlayer依赖于Preferences和Schedule,Preferences依赖于Schedule,Schedule依赖于LedPanelPlayer。您遇到的循环依赖问题在于 LedPanelPlayer 和 Schedule 都相互依赖才能发挥作用。 Schedule 需要 LedPanelPlayer.addElement,并且 LedPanelPlayer 构造了一个 Schedule(并且可能在您尚未发布的 LedPanelPlayer 的某些部分中使用了它,否则它只是闲逛且无用)。

考虑从 LedPanelPlayer 中完全删除 SCHEDULE_LIST_MODEL,并使其成为实际管理它的类 (Schedule) 的实例字段。然后将 Schedule.getScheduleListModel() 添加到 Schedule 中,以便任何需要处理调度的内容都可以简单地引用它,并使 updateList 不是静态的并引用 ScheduleListModel 的新家。由于 Preferences 想要处理调度信息,因此它的构造函数中需要一个调度实例。

这样,LedPanelPlayer将依赖于Preferences和Schedule,Preferences依赖于Schedule,但现在Schedule将不再依赖于LedPanelPlayer来正常运行,不仅解决了您眼前的问题,而且解决了根本原因(并使您的代码更容易阅读、理解和维护!)。

关于java - 向 JList 添加项目导致 java.lang.NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31348512/

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