import javax.swing.UIManager; import javax.swing.LookAndFeel; public class UIManagerTest2{ public static void main(String[] args){ LookAndFeel laf = UIManager.getLookAndFeel(); System.out.println(laf.getName()); } }