有没有一种在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);
}
}发布于 2011-08-14 01:24:59
编辑:
使用setLeftIndent()
检查this example和this one
https://stackoverflow.com/questions/7052061
复制相似问题