如何对JTextArea行计数进行换行?

时间:2012-10-11 10:33:53

标签: java swing jtextarea

我知道这个thread显示了一种方法,但在我的情况下会导致奇怪的行为,我想知道是否没有更简单的方式来做到这一点。

设置文本后,我需要知道JTextArea的大小。我现在就是这样做的:

tarea.getLineCount() * tarea.getRowHeight();

除非没有换行,否则它有效。我想用换行进行相同的计算。有没有什么可以知道换行的时间?这样我只需要将当前行数增加一个。

修改

这是(也许)我找到的解决方案。这几乎是@camickr的this复制粘贴。

int rowStartOffset = textComponent.viewToModel(new Point(0, 0));
int endOffset = textComponent.viewToModel(new Point(0, textComponent.getHeight()));

int count = 0; //used to store the line count
while (rowStartOffset < endOffset) {
    try {
        rowStartOffset = Utilities.getRowEnd(textComponent, rowStartOffset) + 1;
    } catch (BadLocationException ex) {
        break;
    }
    count++;
}

我在启用/不启用换行的情况下进行了一些测试,但似乎有效。

1 个答案:

答案 0 :(得分:0)

在我看来,只要你没有在文本区域调用setPreferredSizegetPreferredSize方法就可以准确地为你提供你想要的东西而不会有麻烦......

这就是为什么你不应该调用setPreferredSize来做布局的原因。首选大小应该由组件计算(例如,当设置文本时)。

如果我错过了这一点,请告诉我;)

import java.awt.*;
import java.awt.event.*;

import javax.swing.*;

public class CalculateTextAreaSize extends Box{

    public CalculateTextAreaSize(){
        super(BoxLayout.Y_AXIS);

        final JTextArea text = new JTextArea("I've\nGot\nA\nLovely\nBunch\nof\nCoconuts!\n");

        JScrollPane pane = new JScrollPane(text);

        add(pane);

        JButton button = new JButton("Set Text!");
        button.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                text.insert("Longish string - how long will it be?", text.getDocument().getLength());
                //The size it will be once everything is figured out
                System.out.println(text.getPreferredSize());
                //The size it is now because no rendering has been done
                System.out.println(text.getSize());
            }
        });
        add(button);
    }

    /**
     * @param args
     */
    public static void main(String[] args) {

        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setContentPane(new CalculateTextAreaSize());
        frame.validate();
        frame.pack();
        frame.setVisible(true);
    }

}