0

我正在尝试将文件从 windows server1 复制到另一个 windows server2 并且不确定将 try catch 块放在哪里。我想在通过弹出窗口或在 textArea 中显示进行复制过程时关闭 windows server1 或 windows server2 时通知用户,这是我的 swingworker 代码。提前致谢

class CopyTask extends SwingWorker<Void, Integer>
{
    private File source;
    private File target;
    private long totalBytes = 0;
    private long copiedBytes = 0;

    public CopyTask(File src, File dest)
    {
        this.source = src;
        this.target = dest;


        progressAll.setValue(0);
        progressCurrent.setValue(0);
    }

    @Override
    public Void doInBackground() throws Exception
    {
        ta.append("Retrieving info ... ");

        retrieveTotalBytes(source);
        ta.append("Done!\n");

        copyFiles(source, target);
        return null;
    }

    @Override
    public void process(List<Integer> chunks)
    {
        for(int i : chunks)
        {
            progressCurrent.setValue(i);
        }
    }

    @Override
    public void done()
    {
        setProgress(100);


    }
    private void retrieveTotalBytes(File sourceFile)
    {
        File[] files = sourceFile.listFiles();
        for(File file : files)
        {
            if(file.isDirectory()) retrieveTotalBytes(file);
            else totalBytes += file.length();
        }
    }

    private void copyFiles(File sourceFile, File targetFile) throws IOException
    {

        if(sourceFile.isDirectory())
        {

            if(!targetFile.exists()) targetFile.mkdirs();

            String[] filePaths = sourceFile.list();

            for(String filePath : filePaths)
            {
                File srcFile = new File(sourceFile, filePath);
                File destFile = new File(targetFile, filePath);

                copyFiles(srcFile, destFile);
            }


        }
        else
        {

            ta.append("Copying " + sourceFile.getAbsolutePath() + " to " + targetFile.getAbsolutePath() ); //appends to textarea
            bis = new BufferedInputStream(new FileInputStream(sourceFile));
            bos = new BufferedOutputStream(new FileOutputStream(targetFile));

            long fileBytes = sourceFile.length();
            long soFar = 0;

            int theByte;

            while((theByte = bis.read()) != -1)
            {
                bos.write(theByte);

                setProgress((int) (copiedBytes++ * 100 / totalBytes));
                publish((int) (soFar++ * 100 / fileBytes));
            }



            bis.close();
            bos.close();
            publish(100);
        }
    }
4

1 回答 1

2

可能发生异常的行在哪里?这是我找到任何异常的第一个地方。

通常,如果您的模块很小,您可以将模块中的try所有真实代码包装起来,并在最后捕获异常,特别是如果异常是致命的。然后您可以记录异常并向用户返回错误消息/状态。

但是,如果异常不是致命的,则策略不同。在这种情况下,您必须在引发连接异常的地方处理它,以便在连接返回时可以无缝恢复。当然,这是一个多一点的工作。

编辑 - 你可能想要在一个块bis.close()内确保它们被关闭。这可能很迂腐,但看起来很谨慎。bos.close()finally

于 2012-12-23T14:32:02.657 回答