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.
可能重复: 何时在 Swing 应用程序中显示无效输入的错误消息
我需要创建一个 java GUI,提示用户在各种文本框中输入数字,总计 100。但我的问题是我如何强制用户输入总共 100 而不会出现烦人的弹出框?
您可以在每个不可见的文本框上方有一个标签,如果它们没有填写,则使它们可见。
您可以简单地显示状态消息JLabel,也可以禁用任何关联的按钮。在每个文本字段文档中添加一个DocumentListener,以在每次进行编辑时重新计算状态。(假设 Swing - 其他窗口工具包可用。)
JLabel
DocumentListener