Create a string values based JSpinner in Java
Description
The following code shows how to create a string values based JSpinner.
Example
//from ww w.j ava 2 s . co m
import java.awt.FlowLayout;
import java.text.ParseException;
import javax.swing.JFrame;
import javax.swing.JSpinner;
import javax.swing.SpinnerListModel;
import javax.swing.SpinnerModel;
public class Main {
public static void main(String args[]) throws ParseException {
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setLayout(new FlowLayout());
String days[] = {"java2s.com","a","v","c"};
SpinnerModel model1 = new SpinnerListModel(days);
JSpinner spinner = new JSpinner(model1);
f.add(spinner);
f.setSize(300, 100);
f.setVisible(true);
}
}
The code above generates the following result.
Home »
Java Tutorial »
Swing »
Java Tutorial »
Swing »