Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Getting and Setting the Values of a JSlider Component

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();   } }