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.
JNLP 规范允许根据系统的操作系统和架构指定标签元素。
我如何找出 Java Webstart 认为我的计算机的操作系统和架构是什么?有没有办法以某种方式以编程方式查看或提取这个值?谢谢。
您可以使用 System.getProperty("os.name")
System.getProperty("os.name")
对于操作系统和
System.getProperty("os.arch")
对于架构,尽管这需要在 web start 应用程序本身中。