Java Swing How to - Create JSlider from max and min value








Question

We would like to know how to create JSlider from max and min value.

Answer

//from  w  ww . ja  va2s.c  o m

import javax.swing.JSlider;

public class Main {
  public static void main(String[] argv) throws Exception {
    // Create a horizontal slider with min=0, max=100, value=50
    JSlider slider = new JSlider();

    // Create a horizontal slider with custom min and max; value is set to the middle
    int minimum = -255;
    int maximum = 256;
    slider = new JSlider(minimum, maximum);
  }
}