NetBeans Forums
| View previous topic :: View next topic |
| Author |
Message |
cryptfilter
Joined: 10 Jan 2011 Posts: 7
|
Posted: Tue Apr 17, 2012 11:02 am Post subject: getCodeBase() file location ? |
|
|
hi, getting into applets using netbeans 7.0.1 with glashfish 3.1.
with this code.
import java.awt.*;
import java.applet.Applet;
public class testMyApplet extends Applet
{
@Override
public void paint(Graphics g)
{
Image img = getImage ( getCodeBase(),"testCrossRoad.png");
// x y width height
g.drawImage(img, 50, 50, 300, 300 , this);
}
}
my question is, where should i save the "testCrossRoad.png" file in the code folder. i currently have it in project folder/web/images.
will using the command getImage ( getCodeBase(),"testCrossRoad.png"); access the file. or am i not setting the file location correctly |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
|