how can I add a list from arraylist from a class created by me to a Jframe window?
如何将arraylist中的列表从我创建的类添加到Jframe窗口?
1 个解决方案
#1
2
Here is one (of many) ways.
这是一种(很多)方式。
- Convert the
ArrayList
to aVector
. - Construct a
JList
using theVector
. - Construct a
JScrollPane
using theJList
. - Construct the
JFrame
-
JFrame.add(JScrollPane)
. -
JFrame.pack()
.
将ArrayList转换为Vector。
使用Vector构造JList。
使用JList构造JScrollPane。
构造JFrame
#1
2
Here is one (of many) ways.
这是一种(很多)方式。
- Convert the
ArrayList
to aVector
. - Construct a
JList
using theVector
. - Construct a
JScrollPane
using theJList
. - Construct the
JFrame
-
JFrame.add(JScrollPane)
. -
JFrame.pack()
.
将ArrayList转换为Vector。
使用Vector构造JList。
使用JList构造JScrollPane。
构造JFrame