public class Main {
public static void main(String[] argv) throws Exception {
String[] items = { "A", "B", "C", "D" };
JList list = new JList(items);
// Select the first 3 items
int start = 0;
int end = 2;
list.setSelectionInterval(start, end);
}
}