在Java中,JTextArea
是一个用于显示多行文本的组件。要设置JTextArea
中的行间距,可以使用setLineSpacing()
方法。
以下是一个简单的示例代码:
import javax.swing.*;
public class JTextAreaExample {
public static void main(String[] args) {
JFrame frame = new JFrame("JTextArea Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400, 300);
JTextArea textArea = new JTextArea();
textArea.setText("This is an example of JTextArea.\nLine spacing can be adjusted using setLineSpacing() method.");
textArea.setLineSpacing(1.5); // Set line spacing to 1.5 times the font size
frame.add(textArea);
frame.setVisible(true);
}
}
在这个示例中,我们创建了一个JTextArea
对象,并设置了一些文本。然后,我们使用setLineSpacing()
方法设置了行间距。最后,我们将JTextArea
添加到了一个JFrame
中,并使其可见。
需要注意的是,setLineSpacing()
方法的参数是一个浮点数,表示行间距与字体大小的比例。例如,如果参数为1.5,则行间距将是字体大小的1.5倍。
领取专属 10元无门槛券
手把手带您无忧上云