我需要从applet代码提醒用户的位置取决于某些情况。有没有办法弹出我们的消息?
答案 0 :(得分:2)
我的评论作为建议的答案:
JOptionPane.showMessageDialog可能就是您要找的东西。您也可以在这里学习:docs.oracle.com/javase/tutorial/uiswing/components/dialog.html
我写这个是因为你用applet和awt标记了这个问题。使用JavaScript,您还可以显示没有Swing的MessageBox,但正如您所写,JOptionPane是您的最佳选择。
答案 1 :(得分:1)
Ya Fildor你的答案是对的,我有同样的想法,我们得到答案的任何方式,
但在Web应用程序中用户摆动概念似乎很奇怪,
我正在关注,
JOptionPane.showMessageDialog(null,
"Your Digital Signature is not registered",
"Registration error",
JOptionPane.ERROR_MESSAGE);
System.exit(0);