Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在 java 中通过 onkeypress evnet 创建文本字段作为自动完成,因为数据库是 Mysql。
您应该使用DocumentFilter(感谢 MadProgrammer)而不是KeyListener. 前者更可靠,更容易处理。
DocumentFilter
KeyListener
此外,JTextField您应该使用 aJComboBox而不是在用户开始输入后显示下拉菜单。
JTextField
JComboBox
现在我不会努力为您创建一些代码,因为您没有表现出提出问题的努力。
继续阅读: