0

我是 Swing 应用程序的新手。我需要在 text 中添加 firstLineIndent ,但是在将此值设置为负数之后,段落的第一行似乎有点模糊。我无法识别 StyleConstants.setFirstLineIndent(attr,-50) 方法的行为。如何纠正这个错误。

以下是我用作参考的代码链接:

http://java-sl.com/tip_hanging_first_line.html

谢谢...

4

1 回答 1

1

不知道为什么该示例扩展了 JEditorPane。编辑器窗格用于 HTML。我更喜欢将 JTextPane 用于样式文本。也不知道为什么要使用自定义编辑器工具包。

以下代码适用于我:

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

//public class HangingIndent extends JEditorPane {
public class HangingIndent extends JTextPane {

    public static void main(String[] args) {
        JFrame frame = new JFrame("Negative (Hanging) first line indent");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        final HangingIndent app = new HangingIndent();
//        app.setEditorKit(new MyEditorKit());
        app.setText("The paragraph with long text is necessary to show how " +
                "hanging indent can be achieved. We should set not only the " +
                "first line indent but the same left indent.");
        StyledDocument doc=(StyledDocument)app.getDocument();
        SimpleAttributeSet attrs=new SimpleAttributeSet();
        StyleConstants.setFirstLineIndent(attrs, -50);
        StyleConstants.setLeftIndent(attrs, 50);

        doc.setParagraphAttributes(0,doc.getLength(),attrs, false);

        JScrollPane scroll = new JScrollPane(app);
        frame.getContentPane().add(scroll);

        frame.setSize(400, 200);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    public HangingIndent() {
        super();
    }
}
于 2013-07-17T14:37:33.193 回答