gpt4 book ai didi

java - for循环java中的JButton.setText()

转载 作者:行者123 更新时间:2023-12-01 12:53:59 26 4
gpt4 key购买 nike

我正在尝试在 JButton 中获取两行文本

文本应该显示在 和
之间以及/> 和 just like this 之间。但由于某种原因,它在我的 for 循环中不起作用

  JButton title[] = new JButton[6];
JButton button[] = new JButton[30];
String[] titleText = {"World Religion", "New Title", "New Title", "New Title", "New Title", "New Title"};


//
for (int i=0; i<6; i++) {
title[i] = new JButton();
title[i].setText("<html> <br /> </html>"+titleText[i]);
add(title[i]);
}

最佳答案

您需要将文本放在 <html> 之间和</html>标签如下:

title[i].setText("<html><br/>" + titleText[i] + "</html>");

标签 <html></html> 之间包含的内容告诉按钮将其解释为 HTML 内容。

关于java - for循环java中的JButton.setText(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24025938/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com