Java中是否有多输入JOptionPane?
我想知道是否有一个 JOptionPane 可以从用户那里获取多个输入,而不仅仅是一个? 如果没有,我如何使用某种类型的提示来完成此操作。 我正在创建战舰,并希望提示用户指定放置每艘船的位置。
谢谢,
托梅克
I was wondering if there is a JOptionPane where you can get multiple inputs from a user instead of just one? If not, how could i accomplish this using some type of prompt. I am creating Battleship, and wanted to prompt the user to specify locations to place each ship.
Thanks,
Tomek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为消息传递到 JOptionPane 的对象可以是图形组件,因此类似这样的内容应该可以工作:
The object that you pass in as the message to the JOptionPane can be graphical components, so something like this should work: