gpt4 book ai didi

java - 如何使 JLabel 中的文本居中?

转载 作者:IT老高 更新时间:2023-10-28 21:04:06 26 4
gpt4 key购买 nike

尽管尝试了很多次,但我无法得到我希望看到的结果 - 文本在 JLabel 中居中,而 JLabel 在 BorderLayout 中有点居中。我说“有点”是因为窗口的右下角还应该有另一个标签“状态”。这里有一段代码负责:

setLayout(new BorderLayout());
JPanel area = new JPanel();
JLabel text = new JLabel(
"<html>In early March, the city of Topeka," +
" Kansas,<br>temporarily changed its name to Google..." +
"<br><br>...in an attempt to capture a spot<br>" +
"in Google's new broadband/fiber-optics project." +
"<br><br><br>source: http://en.wikipedia.org/wiki/Google_server" +
"#Oil_Tanker_Data_Center</html>", SwingConstants.CENTER);
text.setVerticalAlignment(SwingConstants.CENTER);
JLabel status = new JLabel("status", SwingConstants.SOUTH_EAST);
status.setVerticalAlignment(SwingConstants.CENTER);
Font font = new Font("SansSerif", Font.BOLD, 30);
text.setFont(font);
area.setBackground(Color.darkGray);
text.setForeground(Color.green);
// text.setAlignmentX(CENTER_ALIGNMENT);
// text.setAlignmentY(CENTER_ALIGNMENT);
// text.setHorizontalAlignment(JLabel.CENTER);
// text.setVerticalAlignment(JLabel.CENTER);
Font font2 = new Font("SansSerif", Font.BOLD, 20);
status.setFont(font2);
status.setForeground(Color.green);
area.add(text, BorderLayout.CENTER);
area.add(status, BorderLayout.EAST);
this.add(area);

感谢您提供的任何帮助。

最佳答案

以下构造函数,JLabel(String, int) , 允许您指定标签的水平对齐方式。

JLabel label = new JLabel("The Label", SwingConstants.CENTER);

关于java - 如何使 JLabel 中的文本居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6810581/

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