关于JTextArea
想在JTextArea类的对象中实现在当前光标处粘贴内容应如何做?我用append()方法,只能粘贴在尾部
----------------解决方案--------------------------------------------------------
JTextArea jta=new JTextArea();
jta.paste();
不过前提是系统的剪帖版 里面要有东西
你要复制,也可以先选中一段文字,然后再调用它的jta.copy();
----------------解决方案--------------------------------------------------------
用
int |
getCaretPosition() Returns the position of the text insertion caret for the text component. |
void |
insert(String str, int pos) Inserts the specified text at the specified position. |
----------------解决方案--------------------------------------------------------
^O^千里快了一步
----------------解决方案--------------------------------------------------------
----------------解决方案--------------------------------------------------------
谢谢各位大侠,让我试试!
----------------解决方案--------------------------------------------------------
我懂了
要这样用 jTa.insert(text,jTa.getCaretPosition());
----------------解决方案--------------------------------------------------------
呵呵,
碰到这种问题,楼主应该先查看下API 文档.
----------------解决方案--------------------------------------------------------