编程语言
首页 > 编程语言> > java-使用SwingWorker / Swing跟踪wget(bash)的进度

java-使用SwingWorker / Swing跟踪wget(bash)的进度

作者:互联网

我正在尝试制作gui,以便用户能够下载文件.目前,我可以通过一个过程调用wget命令,但是我正在努力将它与swingworker一起使用.

我将如何同时跟踪gui的下载和更新进度?

目前,我已尝试使用此方法:

ShellProcess.command("wget --progress=dot "+_url);

命令是创建过程的方法:

InputStream stdout = _process.getInputStream();
    BufferedReader stdoutBuffered =new BufferedReader(new InputStreamReader(stdout));


    String line = null;
    String output ="";
    try {
        while ((line = _stdoutBuffered.readLine()) != null ) {
            //              System.out.println(line);
            output+=(line+" ");
            System.out.println(line +" SHELL");
            _progress++;
        }
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    _progress = 0;
    return output;

}

我试图计算输出的行数,因为“ wget –progress = dot”应该为进度的每一百分比输出一行.但这似乎不起作用.

我在swingworker中的doInBackground方法看起来像这样:

    @Override
protected Integer doInBackground() throws Exception {
    // Start
    download .command("wget "+_url);
    ShellProcess.command("wget --progress=dot "+_url);
    int progress = 0;
    while (progress<101){
        progress = ShellProcess.getProgress() %100 ;
        publish(ShellProcess.getOutput());
        setProgress(progress);

    }
    return 1;
}

任何帮助,将不胜感激.

解决方法:

在此完整的example中,SwingWorker的后台方法将启动ProcessBuilder.将标准输出和错误流组合在一起以在文本组件中显示.替换您的wget命令以查看效果.试验–progress = bar并一次读取一个字符.

ProcessBuilder pb = new ProcessBuilder("wget", "--progress=dot", url);

标签:swingworker,bash,swing,linux,java
来源: https://codeday.me/bug/20191121/2051324.html