如何使用 Java 在弹出窗口中显示数组列表的输出?
下面是我想要显示的内容:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您将 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".