gpt4 book ai didi

java - 在 gui 中显示文本的最简单方法?

转载 作者:太空宇宙 更新时间:2023-11-04 12:45:06 25 4
gpt4 key购买 nike

我看过很多关于它的帖子,但看起来很复杂。这是我的代码,在 gui textArea 上显示信息的最简单方法是什么?

public static void runSystemCommand(String command) {

String message=null;
int i=0;
while (i<1) {
try {
Process p = Runtime.getRuntime().exec(command);
BufferedReader inputStream = new BufferedReader(
new InputStreamReader(p.getInputStream()));

String s = "";
// reading output stream of the command
while ((s = inputStream.readLine()) != null) {
//here i dont know what to type..please help
}
Thread.sleep(9000);
} catch (Exception e) {
e.printStackTrace();
}
i++;
}
}

最佳答案

最简单的方法是

textAreaName.setText(/*What ever you want to display here*/);

在您的情况下,如果您只想将文本设置为 s,则如下所示:

textArea.setText(s + "\n");

如果您想将文本与现有文本一起更新,您可以使用:

textArea.append(s + "\n");

关于java - 在 gui 中显示文本的最简单方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36408620/

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