J2ME图片显示的问题
我有一段代码,可是运行出来显示不了图片。高手帮帮忙!!!packagetest;importjavax.microedition.midlet.*;importjavax...
我有一段代码,可是运行出来显示不了图片。
高手帮帮忙!!!
package test;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class ShowImageItem extends MIDlet implements CommandListener
{
private Display display;
private Form props;
private Image img;
private ImageItem imgItem;
private Command exitCommand = new Command("Exit", Command.EXIT, 1);
public ShowImageItem()
{
display = Display.getDisplay(this);
}
public void startApp()
{
props = new Form("Hello World");
//props.append("Hello World!\n");
try
{
img=Image.createImage("c:\\Document and Setting\\xh\\j2mewtk\\2.5.2\\aps\\Image\\res\\implements.png");
imgItem=new ImageItem("Default Layout",img,ImageItem.LAYOUT_DEFAULT,"Image Cannot be shown");
props.append(imgItem);
props.append(new ImageItem("Left Layout",img,ImageItem.LAYOUT_LEFT,"Image Cannot be shown"));
props.append(new ImageItem("Center Layout",img,ImageItem.LAYOUT_CENTER,"Image Cannot be shown"));
}
catch(Exception fe)
{
//to do nothing
}
props.addCommand(exitCommand);
props.setCommandListener(this);
display.setCurrent(props);
}
public void commandAction(Command c, Displayable s)
{
if (c == exitCommand)
{
destroyApp(false);
notifyDestroyed();
}
}
public void destroyApp(boolean unconditional)
{
}
public void pauseApp()
{
display.setCurrent(null);
props = null;
}
} 展开
高手帮帮忙!!!
package test;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class ShowImageItem extends MIDlet implements CommandListener
{
private Display display;
private Form props;
private Image img;
private ImageItem imgItem;
private Command exitCommand = new Command("Exit", Command.EXIT, 1);
public ShowImageItem()
{
display = Display.getDisplay(this);
}
public void startApp()
{
props = new Form("Hello World");
//props.append("Hello World!\n");
try
{
img=Image.createImage("c:\\Document and Setting\\xh\\j2mewtk\\2.5.2\\aps\\Image\\res\\implements.png");
imgItem=new ImageItem("Default Layout",img,ImageItem.LAYOUT_DEFAULT,"Image Cannot be shown");
props.append(imgItem);
props.append(new ImageItem("Left Layout",img,ImageItem.LAYOUT_LEFT,"Image Cannot be shown"));
props.append(new ImageItem("Center Layout",img,ImageItem.LAYOUT_CENTER,"Image Cannot be shown"));
}
catch(Exception fe)
{
//to do nothing
}
props.addCommand(exitCommand);
props.setCommandListener(this);
display.setCurrent(props);
}
public void commandAction(Command c, Displayable s)
{
if (c == exitCommand)
{
destroyApp(false);
notifyDestroyed();
}
}
public void destroyApp(boolean unconditional)
{
}
public void pauseApp()
{
display.setCurrent(null);
props = null;
}
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询