当前位置: 技术问答>java相关
请教各位大侠一个关于JTextArea 问题
来源: 互联网 发布时间:2015-10-04
本文导语: 如何对文本内容改变事件进行监听。例如对文本进行添加字符或删除字符,就要通知使用者文本内容已经改变。 | 你看看是否可以使用documentListner. 比如:JTextArea.getDocument().addDocumentListener(....)...
如何对文本内容改变事件进行监听。例如对文本进行添加字符或删除字符,就要通知使用者文本内容已经改变。
|
你看看是否可以使用documentListner.
比如:JTextArea.getDocument().addDocumentListener(....)
比如:JTextArea.getDocument().addDocumentListener(....)
|
赞同楼上的。