执行方法时使用 java applet 获取输入
我已经实现了一个控制台计算器应用程序。它也存储变量。现在我想在 java applet 中使用相同的解析器。我想使用相同的 Parser 类,但这次我想通过对话框获取变量的输入。它应该停止程序的执行,并要求用户在弹出框中输入,当我输入值时,我想在应用程序的下一行中使用该值。
我不想从 bufferedreader 获取值,而是想这样做,
如果 someappletclasss.dialogresult = ok, 值 = someappletclass.myvalue;
我是java编程新手,任何帮助将不胜感激。
I have implemented a console calculator application. It stores variables as well. Now I want to use the same parser in a java applet. I want to use the same Parser class but this time I want to get the inputs for variables via a dialog box. It should stop the execution of the program and asks for a user input in a popup box and when I enter the value, I want to use that value in the next line of the application.
instead of getting the value from bufferedreader, i want to do sthg like this
if someappletclasss.dialogresult = ok,
value = someappletclass.myvalue;
I'm new to java programming and any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
JOptionPane#showInputDialog()
。另请参阅:
Use
JOptionPane#showInputDialog()
.See also: