摆动验证

发布于 2024-08-28 10:19:22 字数 56 浏览 3 评论 0原文

请我需要对提交的文本进行验证,以便用户可以插入空值 如果用户在向用户显示的文本文件消息框上插入空值

Plesae i need to make validation on text filed so user can insert null
if user insert null on text files message box displayed to user

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余罪 2024-09-04 10:19:22

从组件中获取文本并检查它是否为空?如果它为空,则创建一个 JOptionPane 或类似的东西来通知用户他没有输入任何内容。或者,如果您想检查用户提交的内容,您可以使用正则表达式。

编辑:伪代码示例
对于 swing 组件,我假设您正在使用 JTextField 您可以执行以下操作:

if(submitbutton is triggered){
if(textField.getText().isEmpty()){
JOptionPane.showMessageDialog(component,
    "You did not enter anything in the Textfield, please do so",
    "Empty Textfield",
    JOptionPane.PLAIN_MESSAGE);
return;
}}

Get the text from the component and check if it's null? if it's null create a JOptionPane or something like that to inform the user that he didn't enter anything. Or you could use Regex's if you want to check what the user submitted.

Edit: pseudocode example
For swing components, and I'm assuming you're using a JTextField you could do something like:

if(submitbutton is triggered){
if(textField.getText().isEmpty()){
JOptionPane.showMessageDialog(component,
    "You did not enter anything in the Textfield, please do so",
    "Empty Textfield",
    JOptionPane.PLAIN_MESSAGE);
return;
}}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文