执行方法时使用 java applet 获取输入

发布于 2024-10-19 23:33:35 字数 291 浏览 0 评论 0原文

我已经实现了一个控制台计算器应用程序。它也存储变量。现在我想在 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 技术交流群。

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

发布评论

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

评论(1

一身仙ぐ女味 2024-10-26 23:33:35

使用 JOptionPane#showInputDialog()

String inputValue = JOptionPane.showInputDialog("Please input a value"); 

另请参阅:

Use JOptionPane#showInputDialog().

String inputValue = JOptionPane.showInputDialog("Please input a value"); 

See also:

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