我现在正在研究JTree,这么早就遇到了问题。什么是“addSelectionInterval”方法,什么时候使用?它说 - 将 index0 和 index1 之间的路径添加到选择中。这个索引是什么?这是否意味着node0到node1?
问问题
470 次
1 回答
0
查看官方java文档。他们可以提供帮助
另外,如果您想要更具体的内容:
import javax.swing.JList;
public class Main {
public static void main(String[] argv) throws Exception {
String[] items = { "A", "B", "C", "D" };
JList list = new JList(items);
int start = 2;
int end = 2;
list.addSelectionInterval(start, end);
}
}
此示例使用 JList 但您要查找的索引是理论上的(开始,结束)
于 2013-08-17T15:49:01.823 回答