如何使用 Java 在弹出窗口中显示数组列表的输出?

发布于 2024-11-01 08:52:26 字数 311 浏览 1 评论 0原文

下面是我想要显示的内容:

JTextArea result = new JTextArea(10,20);
ArrayList<String> result_set = gen.getResult();
for(Iterator it = result_set.iterator(); it.hasNext();)
{
    String data = (String)it.next();
    result.append(data+"\n");
}

如何在弹出窗口中放置 JTextArea

Below is what I want to display:

JTextArea result = new JTextArea(10,20);
ArrayList<String> result_set = gen.getResult();
for(Iterator it = result_set.iterator(); it.hasNext();)
{
    String data = (String)it.next();
    result.append(data+"\n");
}

How can I put a JTextArea in a popup window?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我纯我任性 2024-11-08 08:52:26

首先,您将 JTextArea 添加到 JScrollPane。

然后您可以将滚动窗格添加到 JPopupMenu。

或者您可以将滚动窗格添加到 JOptionPane。

有关详细信息,请阅读 Swing 教程。其中有“如何使用菜单”和“如何创建对话框”部分。

First you would add the JTextArea to a JScrollPane.

You can then add the scrollpane to a JPopupMenu.

Or you can add the scrollpane to a JOptionPane.

Read the Swing tutorial for more information. There are sections on "How to Use Menus" and "How to Make Dialogs".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文