[mopfattn],
Some the J2ME properties that you can get from using System.getProperty() are :
microedition.configuration
microedition.platform
microedition.locale
microedition.encoding
microedition.encodingClass
microedition.http_proxy
Probably the microedition.configuration and microedition.platform will give you the information that you need i.e. which CLDC configuration version that the device supports and whether it is a j2me supported device.
HTH.
Allen Lai
Developer Technical Support
SUN Microsystems
http://www.sun.com/developers/support/
Hi,
I was retrieving the device information using both palmOS emulator and a real palm device, and I noticed that the method System.getProperty("microedition.locale") returns null.
Anybody know why? For other properties this method return normally..
Thanks
Ricardo
Is any way you can set the microedition.http_proxy property with j2me?
In j2se you can do:
System.getProperties().put( "proxySet", "true" );
System.getProperties().put( "proxyHost", proxyHost );
System.getProperties().put( "proxyPort", proxyPort );
and works OK.
Any ideas?