hello I have a quiz system that has a server, a player and a friend client. I have tried running them( by directly running their main classes) it works fine.
However when i load a player and a friend client from an interface by clicking on their respective jButton, the respective interfaces are loaded but i get the following error:
Exception in thread "Thread-3" java.lang.NullPointerException at playerQuiz.src.QuizClient.run(QuizClient.java:318) at java.lang.Thread.run(Thread.java:595)
But as i have already mentioned the program works perfectly when not loaded from a button.
The code at line 318:
The complete class QuizClient :
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35258
7
posted
0
Welcome to JavaRanch.
That's too much code to work through all of it, but keep in mind that the code in the main method is executed only if it is run from the command line. So if the "in" and "out" streams are not initialized anywhere else, they will be null if the code is not run from the command line.
Thank you for your reply. Where should the "in" and "out" be initialzed and to what, so that they will be null if the code is not run from the command line but from GUI.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35258
7
posted
0
Either initialize everything directly in the constructor, or move it into an "init()" method that's called after the constructor is done.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.