gpt4 book ai didi

java - JTextPane 缩进

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:15:52 28 4
gpt4 key购买 nike

有没有办法在 JTextPane 中缩进一段文本?


import javax.swing.*;
import java.awt.*;
import javax.swing.text.StyledDocument;

public class SimpleTextPane {

public static void main(String... args){
JFrame frame = new JFrame();
JTextPane textPane = new JTextPane();
textPane.setPreferredSize(new Dimension(400, 400));
StyledDocument doc = textPane.getStyledDocument();
try {
doc.insertString(doc.getLength(), "Now he has departed from this strange world a little ahead of me. That means nothing. People like us, who believe in physics, know that the distinction between past, present, and future is only a stubbornly persistent illusion", doc.getStyle(""));
doc.insertString(doc.getLength(), "\n\n" + "I WOULD LIKE TO BE INDENTED Yes, we have to divide up our time like that, between our politics and our equations. But to me our equations are far more important, for politics are only a matter of present concern. A mathematical equation stands forever.", doc.getStyle(""));
} catch (Exception e) {
}
frame.getContentPane().add(new JScrollPane(textPane));
frame.setLocationRelativeTo(null);
frame.pack();
frame.setVisible(true);
}
}

最佳答案

编辑:

使用setLeftIndent()

检查 this examplethis one

关于java - JTextPane 缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7052061/

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