aspose file tools
The moose likes Beginning Java and the fly likes Java exception Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Java exception" Watch "Java exception" New topic
Author

Java exception

Oomeh Khima
Greenhorn

Joined: Jun 08, 2008
Posts: 2
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
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.


Android appsImageJ pluginsJava web charts
Oomeh Khima
Greenhorn

Joined: Jun 08, 2008
Posts: 2
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
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.
 
subject: Java exception
 
Similar Threads
Transforming Code
Help with Chat software
What's up with a random number like this being displayed 889193265?
writeUTF and JComboBox
Errors in GUI program