Tuesday, July 27, 2010

MIME Types supported by BlackBerry Devices

Inorder to know about the Mime Types supported by a simulator you are running,just pass null as parameter in the getSupportedcontentTypes as shown below..
String protocols[]=Manager.getSupportedContentTypes(null);
System.out.println("the supported typed are:");
   for(int i=0;i<protocols.length;i++){
       System.out.println(" "+protocols[i]);
   }


No comments:

Post a Comment