如何在JFrame中添加列表(ArrayList)?

时间:2021-08-22 11:34:10

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 a Vector.
  • 将ArrayList转换为Vector。

  • Construct a JList using the Vector.
  • 使用Vector构造JList。

  • Construct a JScrollPane using the JList.
  • 使用JList构造JScrollPane。

  • Construct the JFrame
  • 构造JFrame

  • JFrame.add(JScrollPane).
  • JFrame.pack().

#1


2  

Here is one (of many) ways.

这是一种(很多)方式。

  • Convert the ArrayList to a Vector.
  • 将ArrayList转换为Vector。

  • Construct a JList using the Vector.
  • 使用Vector构造JList。

  • Construct a JScrollPane using the JList.
  • 使用JList构造JScrollPane。

  • Construct the JFrame
  • 构造JFrame

  • JFrame.add(JScrollPane).
  • JFrame.pack().