Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Util API 可以检查 windows 7、vista、xp 等。但不能检查 windows 8。如何在 install4j 中检查 windows 8?
Util.isWindows8()将包含在 install4j 5.1.3 中。
Util.isWindows8()
同时,您可以检查是否Util.isWindows()为真System.getProperty("os.version").equals("6.2")
Util.isWindows()
System.getProperty("os.version").equals("6.2")