Why is Java on a Vista box reporting it is on XP? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T04:05:58Zhttp://stackoverflow.com/feeds/question/273899http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/273899/why-is-java-on-a-vista-box-reporting-it-is-on-xp3Why is Java on a Vista box reporting it is on XP?David Arno2008-11-07T22:47:19Z2008-11-08T09:03:46Z
<p>I have stumbled across something truly puzzling regarding <code>System.getProperty("os.name")</code>. According to <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6220825" rel="nofollow">a Java bug on the matter</a> and <a href="http://java.sun.com/j2se/1.5.0/ReleaseNotes.html#150_10" rel="nofollow">the Java 5 release notes</a> (search for "os.name"), there was a bug in Java with early "longhorn" versions of Vista that should have been fixed in v5 release 10.</p>
<p>However on my Vista SP1 box - using both v5 release 15 and v6 release 6 - <code>System.getProperty("os.name")</code> returns "Windows XP". Further <code>System.getProperty("os.version")</code> returns "5.1". I cannot find anything relating to this issue via Google though. This makes me wonder whether it is something odd with my Vista setup. I have tried calling the GetVersionEx() API function from a test C program and it returns major version 6, minor 0 (as I'd expect for a Vista install).</p>
<p>Has anyone else encountered this problem, know of a fix or have any suggestions of how I might work around it without using JNI?</p>
http://stackoverflow.com/questions/273899/why-is-java-on-a-vista-box-reporting-it-is-on-xp/273977#2739770Answer by nsayer for Why is Java on a Vista box reporting it is on XP?nsayer2008-11-07T23:21:42Z2008-11-07T23:21:42Z<p>The actual windows version number of Windows 2000 was 5.0. Windows XP was 5.1. Vista is supposedly 6.0, so your test program is functioning correctly. It sounds to me like Java is definitely getting this wrong.</p>
<p>You might have to rely on a JNI to get the right answer. I sort of assume that you've already asked yourself why you might need to vary the behavior of your program based on whether you're using XP or Vista.</p>
http://stackoverflow.com/questions/273899/why-is-java-on-a-vista-box-reporting-it-is-on-xp/274532#2745328Answer by Martin v. Löwis for Why is Java on a Vista box reporting it is on XP?Martin v. Löwis2008-11-08T08:47:56Z2008-11-08T08:47:56Z<p>It might be that Java runs in XP compatibility mode. In that case, Vista will fake the windows version number, making Java believe that it runs on XP. Check the compatibility tab of the executable.</p>