How do you determine 32 or 64 bit architecture of Windows using Java? -
How do you determine Windows 32 or 64 bit architecture using Java?
Thank you.
Please note, the os.arch
property is only available to you JRE < / Em>, not from the built-in OS
If you install a 32 bit JR on a 64 bit system, then System.getProperty ("o.sarch")
back x86
< / P will return>
To really determine the underlying architecture, you have to type some native code. See more information (and link to original code sample)
Comments
Post a Comment