Informações sobre o celular

public void startApp() throws MIDletStateChangeException {

 

  System.out.println("Vendor: " + 

    getAppProperty("MIDlet-Vendor"));

 

  System.out.println("Description: " + 

    getAppProperty("MIDlet-Description"));

 

  System.out.println("JadFile Version: " + 

    getAppProperty("JadFile-Version"));    

 

  System.out.println("MIDlet-Data-Size: " + 

    getAppProperty("MIDlet-Data-Size"));    

 

  System.out.println("MIDlet-Name: " + 

    getAppProperty("MIDlet-Name"));

 

  System.out.println("MIDlet-Jar-Size: " + 

    getAppProperty("MIDlet-Jar-Size"));

 

  System.out.println("MIDlet-jar-Size: " + 

    getAppProperty("MIDlet-Jar-URL"));

}