没有 JDialog 的 java 验证

发布于 2024-11-09 04:57:00 字数 1432 浏览 0 评论 0原文

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

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

发布评论

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

评论(4

海的爱人是光 2024-11-16 04:57:00

在控制台上使用 System.out.println("Your MEssage");?或者在某些 JFrame 上的 JLabel 上?

On the Console with System.out.println("Your MEssage");? Or on a JLabel on some JFrame?

望喜 2024-11-16 04:57:00

怎么样:

    JOptionPane pane = new JOptionPane( "Mobile number can't be empty", JOptionPane.ERROR_MESSAGE);
    JDialog dialog = pane.createDialog( "Error" );
    Container contentPane = dialog.getContentPane();

    myPanelWherever.add(contentPane);

What about:

    JOptionPane pane = new JOptionPane( "Mobile number can't be empty", JOptionPane.ERROR_MESSAGE);
    JDialog dialog = pane.createDialog( "Error" );
    Container contentPane = dialog.getContentPane();

    myPanelWherever.add(contentPane);
追星践月 2024-11-16 04:57:00

尽管我认为你应该重写这个问题,但我会尽力回答。

我想知道您应该问如何让用户知道他在文本字段中输入了无效的输入,因为这可能就是电话号码所在的位置。

那么为什么不将文本字段的背景突出显示为红色 tf.setBackground(Color.RED) 或其边框 tf.setBorder(BorderFactory.createLineBorder(Color.PINK, 5) ))

这样您就不需要显示对话框,并且用户知道该字段中出现问题。

Even though I think you should rewrite the question I will try to answer.

I am quessing that you should be asking how to let a user know that he entered an invalid input into a textfield, as probably that is where the phone number is.

Why don't you then highlight either the background of the text field to red tf.setBackground(Color.RED) or its border tf.setBorder(BorderFactory.createLineBorder(Color.PINK, 5)) ?

This way you do not need to show the dialog, and user knows something is wrong in this field.

烟凡古楼 2024-11-16 04:57:00

我想在没有消息框的情况下执行此操作。

InputVerifier 可能适合这种情况。

I want to do this without message box.

InputVerifier may be suitable in this context.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文