具体添加步骤如下:
1、首先要实例化一个JList对象
2、其次是实例一个ArrayList对象,并向其中添加一些数据
3、再次是将ArrayList对象转换为Object数组,调用其toArray方法即可。
4、最后就是向JList中添加ArrayList了,调用setListData方法将ArrayList转换好的Object数组设置进去即可。
JList是Java GUI编程中的一个重要的列表组件,可以方便地显示对象数组或对象 Vector,不过也仅限于图形界面编程中使用,在web开发或者其他应用开发中,基本上是用不到的。
void setListData(Object[] listData)Constructs a read-only ListModel from an array of objects,
and calls setModel with this model.
void setListData(Vector<?>listData)
Constructs a read-only ListModel from a Vector
and calls setModel with this model.
void setModel(ListModel model)
Sets the model that represents the contents or "value" of the
list, notifies property change listeners, and then clears the list's selection.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)