Computer Science Canada NullPointerException |
Author: | randint [ Sun Aug 07, 2011 11:03 pm ] | ||
Post subject: | NullPointerException | ||
For whatever reason, there is a NullPointerException in a GUI Program I made to open files:
The java.lang.NullPointerException occurs when the user attempts to open a file, I do not know why this is.[/list] |
Author: | Tony [ Sun Aug 07, 2011 11:47 pm ] |
Post subject: | RE:NullPointerException |
Because, on the line where this exception is thrown, you are trying to call a method on NULL. Try to step backwards to figure out why that variable did not have any value assigned to it. |