Tag: htmltext

如何将文本置于JLabel中心?

尽管经过多次尝试,但我无法得到我希望看到的结果 – 在JLabel中居中的文本和JLabel在BorderLayout中居中。 我说“有点”,因为窗口的右下角应该还有另一个标签“status”。 这里有一些代码负责: setLayout(new BorderLayout()); JPanel area = new JPanel(); JLabel text = new JLabel( “In early March, the city of Topeka,” + ” Kansas,temporarily changed its name to Google…” + “…in an attempt to capture a spot” + “in Google’s new broadband/fiber-optics project.” + “source: http://en.wikipedia.org/wiki/Google_server” + “#Oil_Tanker_Data_Center”, SwingConstants.CENTER); text.setVerticalAlignment(SwingConstants.CENTER); JLabel status […]