public Image getPlayerImage()
{ return mario.getImage(); }
mario already is an Image, so you just need to return it "as-is"
public Image getPlayerImage()
{ return mario; }
When you initialise mario you have specified both a document base, and a fully-qualified path/file starting at c:
YOu should have one ofr the other of those, not both. For an applet it's the document base you need, the other paramter should just be the file name (and it's dir if that's a sub-dir of the document base directory). As jalpesh suggested, if you are not sure you should print the document base to find out exactly which dir it refers to