Set the value; the new value will be forced into the bar's range
import javax.swing.JSlider; public class Main { public static void main(String[] argv) throws Exception { JSlider slider = new JSlider(); int newValue = 33; slider.setValue(newValue); } }