> What classes are available to use Java to get a users local environment
> settings, like OS, Installed Web Browsers, Installed Java Version,
> etc...
See http://mindprod.com/applets/wassup.html
You can download the source code.
- Oliver
Let me expand a little more, I will be running this as a client
application outside of a web browser, and want to get information about
the installed browsers and plugins as well as the following:
Javascript Enabled in Internet Explorer?
Virtual Machine for Internet Explorer enabled?
Adobe Acrobat (installation and versions, boith full and plugins)?
Macromedia Flash?
Windows Media Player (as the default media player on the computer)?
I am thinking much of this would be in the registry, but don't know how
or where to access it.
> What classes are available to use Java to get a users local environment
> settings, like OS, Installed Web Browsers, Installed Java Version,
> etc...
Oliver Wong - 06 Jul 2006 22:30 GMT
> Let me expand a little more, I will be running this as a client
> application outside of a web browser, and want to get information about
[quoted text clipped - 8 lines]
> I am thinking much of this would be in the registry, but don't know how
> or where to access it.
The concept of a registry is platform specific (I believe only Windows
has a registry; Mac and Linux don't, for example). You'd have to handle this
in a platform specific way, which probably means writing JNI code.
- Oliver