Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Applet error

Status
Not open for further replies.

disk42

Programmer
Nov 14, 2003
16
0
0
US
Hello,

I have an applet for an image upload site, using Swing components. There is one user that, when he tries to load the applet, gets this error:

java.lang.N ullPointerException

at sun.java2d.SunGraphics2D.<init>(Unknown Source)

at sun.awt.image.SunVolatileImage.createGraphics(Unknown Source)

at java.awt.image.VolatileImage.getGraphics(Unknown Source)

at javax.swing.JComponent.paintWithOffscreenBuffer(Unknown Source)

at javax.swing.JComponent.paintDoubleBuffered(Unknown Source)

at javax.swing.JComponent._paintImmediately(Unknown Source)

at javax.swing.JComponent.paintImmediately(Unknown Source)

at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)

at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)

at java.awt.event.InvocationEvent.dispatch(Unknown Source)

at java.awt.EventQueue.dispatchEvent(Unknown Source)

at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)

at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)

at java.awt.EventDispatchThread.pumpEvents(Unknown Source)

at java.awt.EventDispatchThread.pumpEvents(Unknown Source)

at java.awt.EventDispatchThread.run(Unknown Source)

No one else has this problem. Any ideas?

Thanks for any help,
Phil
 
Perhaps this user has a different jre-installation?
Lacks sun.java2d?
 
No, it's 1.4.1_05, same as me (that was included at the top of the Java console when it initializes, but I didn't include it).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top