在SUN公司得主页中有很多:http://java.sun.com

解决方案 »

  1.   

    public static void main(String[] args){    try {
    UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
            //UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    //UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
        }  
        catch ( Exception e ) {
        System.out.println ("Unexpected error. \nProgram Terminated");
        e.printStackTrace();
        System.exit(0);
        }
        new MainFrame();
      } // end of main
      

  2.   

    我要的是扩展的LookAndFeel包。
      

  3.   

    http://expert.csdn.net/Expert/topic/1850/1850498.xml?temp=.7563898你应该满意了。
      

  4.   

    To: newman0708(nch)
    这个我下过了。效果挺好的,可是我将jar解包,并用到我自己写的程序中时报错。
      

  5.   

    你将.jar文件放入你的ClassPath中就应该没有问题了
      

  6.   

    try {
          UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
        //  UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        }
      

  7.   

    使用方法如:hlding(淋东) 所说的。应该没有问题,如果真的有问题,你去http://expert.csdn.net/Expert/topic/1850/1850498.xml?temp=.7563898
    贴子的主人吧!他挺好的,上次我还问过他呢