JTextPane不会换行

时间:2013-01-31 22:18:52

标签: java swing word-wrap jtextpane

我正在尝试将JTextPane用于自动换行。我搜索过这个网站并在互联网上搜索JTextPane似乎默认是自动换行 - 人们最常遇到的麻烦就是禁用换行或让换行在JScrollPane中工作。我尝试过TextPanes,ScrollPanes和JPanels的各种组合,但无济于事。下面是测试中最简单的代码,但仍有问题(没有换行)。

public class Looseleaf extends JFrame{

    public Looseleaf(){
        this.setSize(200,200);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
        JTextPane txtPane = new JTextPane();
        this.add(txtPane);
        this.setVisible(true);
    }
}

3 个答案:

答案 0 :(得分:3)

根据您的布局,JTextPane可能会也可能不会根据其感知的可用尺寸进行包装。

相反,请将JTextPane添加到JScrollPane而不是......

public class Looseleaf extends JFrame{
    public Looseleaf(){
        this.setSize(200,200);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
        JTextPane txtPane = new JTextPane();
        this.add(new JScrollPane(txtPane)); // <-- Add the text pane to a scroll pane....
        this.setVisible(true);
    }
}

更新了其他示例

试试这个。这对我有用。

public class TestTextPaneWrap {

    public static void main(String[] args) {
        new TestTextPaneWrap();
    }

    public TestTextPaneWrap() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (Exception ex) {
                }

                JFrame frame = new JFrame("Test");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);

            }
        });
    }

    public class TestPane extends JPanel {

        public TestPane() {
            setLayout(new BorderLayout());
            JTextPane editor = new JTextPane();
            editor.setMinimumSize(new Dimension(0, 0));
            add(new JScrollPane(editor));
        }

    }
}

答案 1 :(得分:0)

至少在我看来,以下编码有效。如果将JTextPane添加到具有边框布局的JPane中,然后将该窗格添加到JScrollPane中,则这些行将不会换行。

答案 2 :(得分:0)

我使用了 JTextArea 而不是 JTextPane

当时使用的方法:

textArea.setLineWrap(true);