我使用 JEditorPane 作为编辑器在我的应用程序中编写注释。内容类型设置为“text/plain”。当我在其中写入文本并且文本填充了可用空间并且我继续输入时,文本不会向上移动以显示光标。所以我不知道我在哪里输入以及我在输入什么,因为它是可见的。
您能告诉我如何通过向上移动上述文本来始终显示插入符号吗?
相反,如果我可以在输入时自动调整编辑器的大小可能会更好。JEditorPane 在 JPanel 内,所以我也必须调整它的大小。有任何想法吗?
我使用 JEditorPane 作为编辑器在我的应用程序中编写注释。内容类型设置为“text/plain”。当我在其中写入文本并且文本填充了可用空间并且我继续输入时,文本不会向上移动以显示光标。所以我不知道我在哪里输入以及我在输入什么,因为它是可见的。
您能告诉我如何通过向上移动上述文本来始终显示插入符号吗?
相反,如果我可以在输入时自动调整编辑器的大小可能会更好。JEditorPane 在 JPanel 内,所以我也必须调整它的大小。有任何想法吗?
您需要将编辑器放在 JScrollPane 中。ScrollPane 将自动添加滚动条并消除调整编辑器大小的需要。
编辑添加完整的解决方案
您必须先添加一个 JScrollPane。然后,如果您不希望滚动条可见,但希望文本区域自动滚动,请设置
scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER);
在滚动窗格上。这将隐藏滚动条,但为您提供自动滚动。
以下是您如何使用滚动窗格实现自动滚动,并自动调整大小到给定的最大值。
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.ScrollPaneConstants;
import javax.swing.event.CaretEvent;
import javax.swing.event.CaretListener;
public class SPTest extends JFrame {
private static final long serialVersionUID = 1L;
private JEditorPane editor;
private JScrollPane scrollPane;
private JPanel topPanel;
private JLabel labelTop;
public SPTest() {
super("Editor test");
initComponents();
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
}
private void initComponents() {
editor = new JEditorPane("text/plain", null);
scrollPane = new JScrollPane(editor);
topPanel = new JPanel();
labelTop = new JLabel("main contents here");
topPanel.add(labelTop);
setSize(600, 400);
editor.setMinimumSize(new Dimension(100, 30));
editor.setPreferredSize(new Dimension(100, 60));
scrollPane.setPreferredSize(new Dimension(600, 60));
scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER);
scrollPane.setMinimumSize(new Dimension(100, 30));
final int MAX_HEIGHT_RSZ = 120;
editor.addCaretListener(new CaretListener() {
public void caretUpdate(CaretEvent e) {
int height = Math.min(editor.getPreferredSize().height, MAX_HEIGHT_RSZ);
Dimension preferredSize = scrollPane.getPreferredSize();
preferredSize.height = height;
scrollPane.setPreferredSize(preferredSize);
SPTest.this.validate();
}
});
setLayout(new BorderLayout());
add(topPanel, BorderLayout.NORTH);
add(scrollPane, BorderLayout.SOUTH);
}
public static void main(String[] args) {
new SPTest();
}
}
您可以调整大小 您可以使用此 JScrollPane 而不是 JPanel 作为编辑器的容器。