please suggest some good websites and materials to learn j2me?
can any one help me to learn j2me?
Thank & regards,
Madhu
Printable View
please suggest some good websites and materials to learn j2me?
can any one help me to learn j2me?
Thank & regards,
Madhu
I suggest u a Book.
Book Name-John W Muchow--J2ME
This Book Contain Very Simple Language to Learn J2ME.
And This Book Covered all Topics in Simple Way.
This Book Is the best for Beggners Like u.
Thank you for interesting to give a suggestion.I want to learn from Internet is there any good webaddress to learn J2ME please message me if u have web addresses.
Thanks & Regards,
Madhu
No Particularly Web Address are there To read Whole Tutorial.
Web Only Provide u the Topic search wise Solution.
Can any one help on LDAP in java PPT ...its very urgent plzz....
to run helloworld program in J2ME? ...What are the libraries,IDE,tool kits,jar files etc...needed to run?please give a reply to me.
U have to Use
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class RMSDemo extends MIDlet implements CommandListener
{
private Display display;
private Command exit;
Form frm,form;
private Command add;
private Command delete;
private Command show;
public RMSDemo()
{
display = Display.getDisplay(this);
}
public void startApp()
{
frm=new Form("RMSDemo");
exit= new Command("Exit",Command.EXIT,1);
frm.addCommand(exit);
add= new Command("Add",Command.SCREEN,1);
frm.addCommand(add);
delete= new Command("Delete",Command.SCREEN,2);
frm.addCommand(delete);
show= new Command("SHOW",Command.SCREEN ,3);
frm.addCommand(show);
frm.setCommandListener(this);
frm.append("Hello world");
display.setCurrent(frm);
}
public void pauseApp()
{
}
public void destroyApp(boolean un)
{
}
// Handling commands
public void commandAction(Command cmd,Displayable d)
{
if(cmd==add)
{
addRecord();
}
if(cmd==delete)
{
removeRecord();
}
}
This is a Sample Program to learn J2ME It Prints "HelloWorld".
This is very good webSite
http://www.roseindia.net/j2me/
it contains tutorial + example
and the source code of the example
Yes This Website Contains the Example. But This is not the right way to learn
J2Me from starting.
Most Of the thing U will not Understand from this.
This is for whho have the Some Knowledge about J2ME.
I think U shuld learn with a Good Book.