我尝试在Canvas上加载图片,但它会给java.io.IOException exception
。我不知道我要把图像放在哪个文件夹中。但是现在我把图像放在F :\New Folder\DrawImage\src\Waterfall.png.
我正在使用netbean编辑器进行编码。来自here
public class Midlet extends MIDlet {
public Display display;
public void startApp() {
Canvas obj = new DrawImage();
display = Display.getDisplay(this);
display.setCurrent(obj);
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
}
public class DrawImage extends Canvas{
int width = getWidth();
int height = getHeight();
protected void paint(Graphics g) {
try {
System.out.println("111111");
Image image = Image.createImage("/Waterfall.png");
if(image != null)
g.drawImage(image, 0, 0, Graphics.TOP | Graphics.LEFT);
else
System.out.println("2222");
} catch (IOException ex) {
System.out.println(ex);
}
}
}
}
答案 0 :(得分:0)
您需要在项目文件夹中创建新文件夹并重命名为rsc
,然后将图像复制并粘贴到此文件夹中。之后,您需要转到项目属性并单击该窗口上的Build -> Libraries and Resources
,找到Add Folder
按钮,单击该按钮,找到您rsc
文件夹,然后单击确定。然后运行你的项目。