gpt4 book ai didi

java - 在java中使用GUI进行控制台输入和输出

转载 作者:行者123 更新时间:2023-12-04 05:50:25 35 4
gpt4 key购买 nike

如何将控制台信息输出到 GUI?我有一个应用程序,它有一个 GUI,直到我让用户在类似于 linux 中的 CLI 的目录中移动。那么我如何将控制台的输出和输入移植到 GUI 中。 JPanel 会是要走的路还是别的什么?

最佳答案

从技术上讲,如果您愿意,可以使用 JTextArea来实现这一点。您可以使用 JTextArea 的 append(),而不是将您通常编写的内容写入控制台,例如告诉程序员某事成功或不成功的一些信息(当然用于故障排除)。方法来编写您通常在控制台上编写的内容。例子:

javax.swing.JTextArea guiConsole = new JTextArea(10,10); //Just so you know what this is
System.out.println("This sentence is printed to the real console.");
guiConsole.append("But this one is printed to the GUI Console we made.");

See the API for details

关于java - 在java中使用GUI进行控制台输入和输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10128309/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com