JLabel doesn't show a long paragraph

java, jlabel, swing, user-interface

Solution

JLabel label = new JLabel("<html>"+test+"</html>");

Problem

How can I enable the JLabel to show the whole paragraph?

Original source

Related problems