gpt4 book ai didi

java - 从可运行线程追加时 JTextArea 为空

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

enter image description here

我是 Swing 新手,正在开发桌面应用程序。该应用程序的一部分有一个后台进程运行 .exe,然后将终端的 pout 读取到动态创建的 JtextArea 中。我将此输出附加到 JtextArea (线程安全)。我可以在 PrintLn 中看到输出,但在 JTextArea 上看不到输出。事实上,JTextRea 是卡住的、空白的。我怀疑与重新验证和重新绘制有关,但我只是想知道将它们放在哪里?这是完成这项工作的代码。欢迎任何帮助或建议。

progressWindow = new JFrame("Please wait ...");

FlowLayout defFileFlow = new FlowLayout();
progressWindow.setLayout(defFileFlow);
defFileFlow.setAlignment(FlowLayout.TRAILING);
progressWindow.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
progressWindow.setSize(550,680);

progressPane = new JTextArea(30, 80);
DefaultCaret caret = (DefaultCaret)progressPane.getCaret();
caret.setUpdatePolicy(DefaultCaret.OUT_BOTTOM);

progressPane.setLayout(new BorderLayout(500, 500));
progressPane.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));

progressPane.setFont(new Font("Monospaced", 0, 12));
progressPane.setText("Please wait while we crunch some numbers .." + "\n");
JScrollPane scroller = new JScrollPane(progressPane, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);

progressWindow.add(scroller);
scroller.setBounds(0, 0, 500, 500);

JButton cancelButton = new JButton("Cancel Analysis");
progressWindow.add(cancelButton);
progressWindow.setComponentOrientation(ComponentOrientation.UNKNOWN);
progressWindow.setVisible(true);
progressWindow.setAlwaysOnTop(true);

Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
progressWindow.setLocation(dim.width/2-progressWindow.getSize().width/2, dim.height/2-progressWindow.getSize().height/2);


try {
copyExecutable(defFilePath, selectedModel);
Process p=Runtime.getRuntime().exec("cmd /c dir && cd " + defFilePath + " && dir && "
+ defFileName);
Thread runCMD = new Thread(new Runnable(){
public void run() {
System.out.println("Inside the thread");
try{
InputStreamReader isr = new InputStreamReader(p.getInputStream());
BufferedReader br = new BufferedReader(isr);
String line=null; // UI magic should run in here @adityapona
while ( (line = br.readLine()) != null){
System.out.println("MIXWILD:" + line);
progressPane.append("MIXWILD:" + line + "\n");

progressPane.setCaretPosition(progressPane.getDocument().getLength());
}
} catch (IOException ioe)
{
ioe.printStackTrace();
}
}
});
runCMD.start();

重要当线程运行并返回退出值 0 时,窗口成功关闭。

最佳答案

Process p=Runtime.getRuntime().exec("...);
Thread runCMD = new Thread(new Runnable(){

该进程正在事件调度线程 (EDT) 上运行,这会阻止 GUI 响应事件并重新绘制自身。

进程本身应该从线程内部启动。 (即尝试将 Process 语句从线程外部移至 run() 方法内部,以便 Process 在单独的线程上执行,而不是在 EDT 线程上执行。)

阅读 Swing 教程中有关 Swing 并发性的部分以获取更多信息。您可能需要考虑使用专为此类处理而设计的 SwingWorker。它允许您调用长时间运行的任务并在结果可用时“发布”结果。这是比仅使用线程更好的解决方案,因为“发布”过程将确保在 EDT 上执行“追加”。

编辑:

progressPane.setLayout(new BorderLayout(500, 500));

为什么要尝试为文本区域提供布局管理器?怀疑它会导致问题,但绝对不需要也不应该使用它。

progressWindow.setComponentOrientation(ComponentOrientation.UNKNOWN);

无需调整方向。

scroller.setBounds(0, 0, 500, 500);

不要玩弄界限。设置组件的大小/位置是布局管理器的工作。

关于java - 从可运行线程追加时 JTextArea 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46915321/

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