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.
我使用 JButtons 创建了一个现场键盘。我想知道是否有一种方法可以在每次按下按钮时显示文本。当按下不同的按钮时,我不希望文本被覆盖。例如三个按钮:'A' 'B' 'C' 当所有按钮都被按下时,“ABC”显示在文本框中。然后我将使用文本框中的文本并检查它是否与某个字符串匹配。我考虑过使用 setText(); 但这会在按下新按钮时覆盖文本框中的文本。谢谢
field.setText(field.getText() + newText);