如何在java GUI中显示控制台
是否有可能将控制台连接到 GUI,以便用户能够从 GUI 在控制台中输入命令?
Is there a possible way to attach the console to a GUI so that the user will be able to enter commands into the console from the GUI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要程序从控制台启动,它就可以从控制台读取和写入。除了代码之外,没有任何东西可以使 Java 程序成为“GUI”或“控制台”。
如果您希望始终拥有一个控制台,无论程序如何启动,您只需编写一个框架以使其表现得像一个控制台。
As long as the program is launched from the console, it can read and write from/to the console. There's nothing that makes a Java program "GUI" or "Console" except for the code.
If you want to always have a console regardless of how the program is launched, you could just code a frame to behave as one.