我知道这个线程显示了一种方法,但在我的情况下它会导致奇怪的行为,我想知道是否没有更简单的方法来做到这一点。
我需要知道JTextArea
设置文本后的大小。这是我目前的做法:
tarea.getLineCount() * tarea.getRowHeight();
除非没有换行,否则它可以工作。我想用换行做同样的计算。有没有人知道何时发生换行?这样我只需要将当前行数增加一。
编辑:
这是(也许)我找到的解决方案。这几乎是@camickr 的复制粘贴。
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++;
}
我做了一些测试,启用/不启用换行,它似乎工作。