02a cldc property support

7

Click here to load reader

Upload: corneliuskoo

Post on 28-Jun-2015

257 views

Category:

Technology


1 download

DESCRIPTION

J2ME CLDC

TRANSCRIPT

Page 1: 02a cldc property support

CLDC Property Support

Cornelius Koo - 2005

Page 2: 02a cldc property support

Host Platform / Device

• System.getProperty(“microedition.platform”);

Page 3: 02a cldc property support

Default Character Encoding

• System.getProperty(“microedition.encoding”);

Page 4: 02a cldc property support

Configuration Name and Version

• System.getProperty(“microedition.configuration”);

Page 5: 02a cldc property support

Supported Profiles Name

• System.getProperties(“microedition.profiles”);

Page 6: 02a cldc property support

Accessing Runtime Information

Runtime rtime = Runtime.getRuntime();

System.out.println("Total memory: "+rtime.totalMemory());

System.out.println("Free memory: "+rtime.freeMemory());

Page 7: 02a cldc property support

Reference

• Core J2ME Technology and MIDP. John

W. Muchow. Prentice Hall PTR, 2002.