使用 JOptionPane

发布于 2024-08-13 01:26:12 字数 270 浏览 6 评论 0原文

如果我使用 JOptionPane 消息对话框,我如何能够在消息部分显示整个数组,例如这个小 snipit?或者这可能吗?

 public void showTheMessage()

{
 JOptionPane.showMessageDialog(null,"These are are all the colors to
          choosfrom,\n"+ arrayOfcolors[the whole array], "Color box");
 }

if i was using a JOptionPane message dialog box how would I be able to show an the whole array in the message section such as this little snipit? or would that evenbe possible?

 public void showTheMessage()

{
 JOptionPane.showMessageDialog(null,"These are are all the colors to
          choosfrom,\n"+ arrayOfcolors[the whole array], "Color box");
 }

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

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

发布评论

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

评论(3

﹂绝世的画 2024-08-20 01:26:12

最简单的事情是将数组的所有元素连接成一个大字符串。

String colors = "";
for(int i = 0; i < arrayOfColors.length; i++)
    colors += arrayOfColors[i] + " ";

The easiest thing to do would be to concatenate all the elements of the array into one big string.

String colors = "";
for(int i = 0; i < arrayOfColors.length; i++)
    colors += arrayOfColors[i] + " ";
十六岁半 2024-08-20 01:26:12

showOptionDialog 方法允许用户从选项数组中选择单个元素,我认为这就是您的意思寻找。

The showOptionDialog method lets the user select a single element from an array of options, which I think is what you're looking for.

〆凄凉。 2024-08-20 01:26:12

如果它是一个 Color 对象数组,

   String colors="";
   for (Color c: arrayOfColors) 
       colors+= c.toString() + " ";

否则如果它是一个 String 对象数组,

   String colors="";
   for (String s: arrayOfColors) 
       colors+= s + " ";

请注意,使用 StringBuilder 会快得多,但我猜这只是一个小数组。

In case its an array of Color objects

   String colors="";
   for (Color c: arrayOfColors) 
       colors+= c.toString() + " ";

Otherwise if its an array of String objects

   String colors="";
   for (String s: arrayOfColors) 
       colors+= s + " ";

Just a note, using StringBuilder is much faster, but this is just a small array i guess.

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