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.
是否可以将 Java GUI 的外观更改为您的操作系统(例如 Windows)的外观?如果是这样,那我该怎么做?
是的,请参阅Oracle 的 Java 教程中的如何设置外观。
要将外观设置为当前系统外观:
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
请参阅UIManager。