Java Swing How to - Get Values of a JSlider Component








Question

We would like to know how to get Values of a JSlider Component.

Answer

//from  w  ww  .j av a 2s .  c om
import javax.swing.JSlider;

public class Main {
  public static void main(String[] argv) throws Exception {
    JSlider slider = new JSlider();

    // Get the current value
    int value = slider.getValue();

    // Get the minimum value
    int min = slider.getMinimum();

    // Get the maximum value
    int max = slider.getMaximum();
  }
}