Author |
Message |
BladeOfDeath
|
Posted: Sat Jan 08, 2005 9:51 pm Post subject: NullPointerException |
|
|
I get this error every time I something with the paint command in "Ready To Program" which is the program I must use for my computer science course. A little help would be appreciated, if I could fix this problem I could get extra marks on my ISU.
|
|
|
|
|
|
Sponsor Sponsor
|
|
|
wtd
|
|
|
|
|
BladeOfDeath
|
Posted: Wed Jan 12, 2005 12:44 pm Post subject: (No subject) |
|
|
okay I looked at the site but I don't know how to fix it, mind telling me how?
|
|
|
|
|
|
wtd
|
Posted: Wed Jan 12, 2005 6:23 pm Post subject: (No subject) |
|
|
My guess is that somewhere you've declared an object-type variable, but haven't used "new" to create it. Like:
code: | StringBuffer sb;
sb.append("Hello"); |
instead of:
code: | StringBuffer sb = new StringBuffer();
sb.append("Hello"); |
|
|
|
|
|
|
BladeOfDeath
|
Posted: Wed Jan 12, 2005 6:41 pm Post subject: (No subject) |
|
|
Well... I think it has something to do with the Image variables or something, because I've never had this error unless using graphics. I'll attach a copy of the code if you wanna check it out for yourself (the images are not enclosed).
Description: |
|
Download |
Filename: |
Leviathan.java |
Filesize: |
1.81 KB |
Downloaded: |
218 Time(s) |
|
|
|
|
|
|
wtd
|
Posted: Wed Jan 12, 2005 6:48 pm Post subject: (No subject) |
|
|
Can I see a full copy of the error?
|
|
|
|
|
|
BladeOfDeath
|
Posted: Thu Jan 13, 2005 12:12 pm Post subject: (No subject) |
|
|
it only shows at home, but when i get home ill send it. Thanks for the help though
|
|
|
|
|
|
MrPenisJr.
|
Posted: Thu Jan 13, 2005 6:19 pm Post subject: (No subject) |
|
|
Just use some Java source code!
--MrPenisJr.
|
|
|
|
|
|
Sponsor Sponsor
|
|
|
|