Archive for the 'rms' Category
/*J2ME: The Complete Reference
James Keogh
Publisher: McGraw-Hill
ISBN 0072227109
*///jad file (please verify the jar size)/*MIDlet-Name: SortMixedRecordDataTypeExampleMIDlet-Version: 1.0MIDlet-Vendor: MyCompanyMIDlet-Jar-URL: SortMixedRecordDataTypeExample.jarMIDlet-1: SortMixedRecordDataTypeExample, , SortMixedRecordDataTypeExampleMicroEdition-Configuration: CLDC-1.0MicroEdition-Profile: MIDP-1.0MIDlet-JAR-SIZE: 100
*/
import javax.microedition.rms.*;import javax.microedition.midlet.*;import javax.microedition.lcdui.*;import java.io.*;
public class SortMixedRecordDataTypeExample extends MIDlet implements CommandListener{ private Display […]
July 4th, 2007 | Posted in j2me source code, midlet, rms | No Comments
/*J2ME: The Complete Reference
James Keogh
Publisher: McGraw-Hill
ISBN 0072227109
*/
// jad file (Please verify the jar size first)/*MIDlet-Name: SearchExampleMIDlet-Version: 1.0MIDlet-Vendor: MyCompanyMIDlet-Jar-URL: SearchExample.jarMIDlet-1: SearchExample, , SearchExampleMicroEdition-Configuration: CLDC-1.0MicroEdition-Profile: MIDP-1.0MIDlet-JAR-SIZE: 100
*/import javax.microedition.rms.*;import javax.microedition.midlet.*;import javax.microedition.lcdui.*;import java.io.*;
public class SearchExample extends MIDlet implements CommandListener{ private Display display; private Alert alert; private Form form; private Command exit; private […]
July 4th, 2007 | Posted in j2me source code, midlet, rms | No Comments
/*J2ME: The Complete Reference
James Keogh
Publisher: McGraw-Hill
ISBN 0072227109
*///jad file (please verify the jar size)/*MIDlet-Name: SortExampleMIDlet-Version: 1.0MIDlet-Vendor: MyCompanyMIDlet-Jar-URL: SortExample.jarMIDlet-1: SortExample, , SortExampleMicroEdition-Configuration: CLDC-1.0MicroEdition-Profile: MIDP-1.0MIDlet-JAR-SIZE: 100
*/import javax.microedition.rms.*;import javax.microedition.midlet.*;import javax.microedition.lcdui.*;import java.io.*;
public class SortExample extends MIDlet implements CommandListener{ private Display display; private Alert alert; private Form form; private Command exit; private Command start; […]
July 4th, 2007 | Posted in j2me source code, midlet, rms | No Comments
import javax.microedition.midlet.*;import javax.microedition.lcdui.*;import javax.microedition.rms.*;import java.io.*;
public class RMSDemo extends MIDlet implements CommandListener {
private Display display; private RecordStore rs=null; private Command exit; private RecordEnumeration re; private int recordNO; Form frm; int index=0; […]
July 4th, 2007 | Posted in j2me source code, midlet, rms | No Comments