gpt4 book ai didi

java - 设置插入符位置,其中插入符不在 JTextArea 中

转载 作者:行者123 更新时间:2023-12-01 18:46:09 25 4
gpt4 key购买 nike

无论如何,我可以在 JTextArea 中设置之前没有插入符号的位置吗?我想使用 KeyEvent.VK_ENTER 上的 KeyListener 将文本添加到 JTextArea,然后将插入符位置设置在将文本添加到 JTextArea 的下方一行。

干杯,

泰勒

最佳答案

using KeyListener on the KeyEvent.VK_ENTER

不要使用 KeyListener。 Swing 被设计为与键绑定(bind)一起使用。阅读 Swing 教程中关于 How to Use Key Bindings 的部分了解更多信息。

set the caret position one line underneath where I add the text to the JTextArea.

添加文本时,请确保在文本区域附加“\n”。然后你就可以使用:

textArea.setCaretPosition( textArea.getDocument().getLength() );

关于java - 设置插入符位置,其中插入符不在 JTextArea 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17734139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com