J2ME_System.getProperty


转自:http://dev.10086.cn

//手机平台型号
String platform = System.getProperty("microedition.platform");
//SMS服务中心号码
String _smscno = System.getProperty("wireless.messaging.sms.smsc");

//CLDC版本属性
String cldc = System.getProperty("microedition.configuration");
//MIPD版本属性
String midp = System.getProperty("microedition.profiles");

//关于软件相关信息
String midletVendor =System.getProperty("MIDlet-Vendor");
String description =System.getProperty("MIDlet-Description");
String version = System.getProperty("MIDlet-Version"); 
String dataSize = System.getProperty("MIDlet-Data-Size"); 
String midletName = System.getProperty("MIDlet-Name");
String midletJarSize =System.getProperty("MIDlet-Jar-Size");
String midletJarURL =System.getProperty("MIDlet-Jar-URL");


//系统编码
String encoding = System.getProperty("microedition.encoding");
//区域设置
String locale = System.getProperty("microedition.locale");
//判断是否支持MMAPI
String mmapi = System.getProperty("microedition.media.version");
//判断是否支持蓝牙
String bluetooth = System.getProperty("bluetooth.api.version");
//判断是否支持个人信息管理
String pim = System.getProperty("microedition.pim.version");
//判断是否支持文件系统
String file = System.getProperty("microedition.io.file.FileConnection. version");
//判断是否支持SIP
String sip = System.getProperty("microedition.sip.version");
//判断是否支持M3G
String m3g = System.getProperty("microedition.m3g.version");


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM