将JList插入现有JFrame

时间:2015-12-27 15:04:37

标签: java swing layout

我有一个看起来像这样的JFrame: enter image description here

用户在JTextArea2中输入一些命令,结果显示在JTextArea1中。

现在,对于输入的特定命令,我想创建和"插入" JList在JTextArea1中的某个地方。

看起来像: enter image description here

这里有一些代码来展示我最初如何放置它们。我怎么能这样做?

setLayout(new FlowLayout());
textArea_1 = new JTextArea(25,112);
textArea_1.setEditable(false);
scroll_1 = new JScrollPane(textArea_1, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
add(scroll);
textArea_2 = new JTextArea(1,111);
scroll_2 = new JScrollPane(textArea_2, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
add(scroll_2);

0 个答案:

没有答案