Why Java Swing JProgressBar is not working properly in Nimbu Look and Feel?

孤街醉人 提交于 2019-12-02 14:54:49

问题


I am working on one simple java project which traverses through the specified directory and finds the redundant files. Everything except one thing is working fine, I am using JProgressBar to show the status of directory spanning. It is working just fine with other look and feels but, when I set my favourite "Nimbus Look & Feel", the progress bar is not showing the fill color of progress. I set the progress bar to paint the string along. The string is showing up(3%, 5%...). I am new to look and feels in java.

Code I used to update the progress bar...

private synchronized void updateProgress(long length)
{
        prog = prog + (length/onePart);

        if(prog>100)
            prog = 100;

        addLog((int)prog + " % completed.");

        SwingUtilities.invokeLater(new Runnable() 
        {
            @Override
            public void run() {
                progress.setValue((int)prog);
                progress.setString((int)prog+" %");
                progress.update(progress.getGraphics());
            }
        });
}


回答1:


I again suggest you create a minimal example program like the code below. In fact, please feel free to modify this code so that it reproduces your problem:

import java.awt.event.KeyEvent;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.util.Random;

import javax.swing.*;
import javax.swing.UIManager.LookAndFeelInfo;

@SuppressWarnings("serial")
public class NimbusFoo extends JPanel {
   private JProgressBar progressBar = new JProgressBar();

   public NimbusFoo() {
      progressBar.setStringPainted(true);
      add(progressBar);
      add(new JButton(new StartAction("Start", KeyEvent.VK_S)));
   }

   private class StartAction extends AbstractAction {
      public StartAction(String name, int mnemonic) {
         super(name);
         putValue(MNEMONIC_KEY, mnemonic);
      }

      public void actionPerformed(java.awt.event.ActionEvent evt) {
         final JButton btn = (JButton) evt.getSource();
         btn.setEnabled(false);

         final SwingWorker<Void, Void> mySwingWorker = new SwingWorker<Void, Void>() {
            Random random = new Random();
            private long sleepTime = 200;
            protected Void doInBackground() throws Exception {
               int progress = 0;
               setProgress(progress);

               while (progress < 100) {
                  progress += random.nextInt(5);
                  progress = Math.min(100, progress);
                  setProgress(progress);
                  Thread.sleep(sleepTime);
               }
               return null;
            };
         };
         mySwingWorker.addPropertyChangeListener(new PropertyChangeListener() {
            @Override
            public void propertyChange(PropertyChangeEvent pcEvt) {
               if ("progress".equals(pcEvt.getPropertyName())) {
                  progressBar.setValue(mySwingWorker.getProgress());
                  progressBar.setString(mySwingWorker.getProgress() + "%");
               }
               if ("state".equals(pcEvt.getPropertyName())) {
                  if (pcEvt.getNewValue() == SwingWorker.StateValue.DONE) {
                     btn.setEnabled(true);
                  }
               }
            }
         });
         mySwingWorker.execute();
      };
   }

   private static void createAndShowGui() {

      try {
         for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
               UIManager.setLookAndFeel(info.getClassName());
               break;
            }
         }
      } catch (ClassNotFoundException e) {
         e.printStackTrace();
      } catch (InstantiationException e) {
         e.printStackTrace();
      } catch (IllegalAccessException e) {
         e.printStackTrace();
      } catch (UnsupportedLookAndFeelException e) {
         e.printStackTrace();
      }

      NimbusFoo mainPanel = new NimbusFoo();

      JFrame frame = new JFrame("Nimbus Fun");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.getContentPane().add(mainPanel);
      frame.pack();
      frame.setLocationByPlatform(true);
      frame.setVisible(true);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            createAndShowGui();
         }
      });
   }
}



来源:https://stackoverflow.com/questions/23033746/why-java-swing-jprogressbar-is-not-working-properly-in-nimbu-look-and-feel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!