我想要实现的是JTextField
底部有JTable
,每次JTextField
发生更改(输入或删除字符){{ 1}}将更新显示其匹配JTable
上的内容的字符串列表中的结果,并显示所有结果为空。
我不知道该怎么做:
答案 0 :(得分:1)
Add a DocumentListener
to your JTextField
. Update the TableModel
belonging to your JTable
with matches. The JTable
will update itself in response.