2011-08-13 23 views
3

JTextPaneにテキストのブロックをインデントする方法はありますか?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); 
    } 
} 
+0

あなたが正当意味ですか?右揃え?中心?私はコードをインデントします。 – Snicolas

+0

挿入された2番目の文字列でインデントされるのは、JTextPaneの各行に指定された数のスペースまたはタブでインデントされます。 –

+0

手で追加できませんでしたか?私は専用の方法を意味しますか? – Snicolas

答えて

1

EDIT:

使用setLeftIndent()

チェックthis examplethis one

+0

これらはJTextPaneのメソッドではなく、JTextAreaのメソッドです。 JTextPaneは自動的にワードラップしますが、これは私の質問ではありませんでした。ありがとう。 –

+0

@farm ostrich更新を参照してください! –

+0

それはうまくいった。私は助けに感謝します。 –