English 中文(简体)
JLabel正在扩大,但并非一字节。
原标题:JLabel expanding but not word-wrapping

我有一只“JLabel”标语,显示如下文所示的错误信息。 我的理解是,如果电文植根于html的标签内,则该标签应该是一字。 然而,就我而言,标签似乎横向扩大。 请允许我告诉我,我没有做什么? 或者,是否有更好的办法显示长期错误的信息?

该法典:

public class MyPanel extends JPanel {
  public MyPanel() {
    this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));

    // Several JPanel objects inside

    // The last JPanel to show error messages

    JPanel panelErrMsg = new JPanel(new FlowLayout(FlowLayout.LEFT));

    this._lblError = new JLabel();
    this._lblError.setBorder(BorderFactory.createEmptyBorder(20, 10, 10, 10));
    this._lblError.setForeground(Color.RED);
    this._lblError.setFont(new Font("Courier New", Font.BOLD, 12));
    panelErrMsg.add(this._lblError);
    this.add(panelErrMsg);
  }

  private void DisplayMessage(String msg) {
    String newMessage = "<html><body>" + msg + "</body></html>";
    this._lblError.setText(newMessage);
  }

}
问题回答

您可以在开放源头JIDE Commonrice Laborel上尝试。 它支持你希望JLabel能够做的许多其他特征。

The label needs to have a maximum width for it to wrap. Try setting the maximum width or wrapping the text in a div tag with a width attribute.

采用<条码>BorderLayout,panelErrMsg,并将标签贴在挪威航天中心的位置上。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签