使用SWT filedialog复制多个文件

时间:2017-03-24 05:04:15

标签: java swt filedialog

我正在使用传输文件程序,我的程序正在运行,但我遇到了问题,因为当我选择多个文件并将其放在textbox上时,源目录无法读取textbox

这是我的代码

打开文件/文件

btnSearchFile.addSelectionListener(new SelectionAdapter() {
    public void widgetSelected(SelectionEvent e) {
        FileDialog fd = new FileDialog(shell, SWT.MULTI);
        Collection files = new ArrayList();
        String firstFile = fd.open();
        if (firstFile != null) {
            String[] selectedFiles = fd.getFileNames();
            File file = new File(firstFile);
            for (int ii = 0; ii < selectedFiles.length; ii++ )
            {
                if (file.isFile())
                {
                    displayFiles(new String[] { file.toString()});
                }
                else
                    displayFiles(file.list());
            }
        }
    }
});

在文本框中显示文件

public void displayFiles(String[] files) {
    for (int i = 0; files != null && i < files.length; i++) {
        txtSource.append(files[i]);
        txtSource.setEditable(false);
    }
}

复制文件

public static void copyFile(File src, File dest) throws IOException
{
    InputStream oInStream = new FileInputStream(src);
    OutputStream oOutStream = new FileOutputStream(dest);

    // Transfer bytes from in to out
    byte[] oBytes = new byte[1024];
    int nLength;
    BufferedInputStream oBuffInputStream = new BufferedInputStream( oInStream );
    while ((nLength = oBuffInputStream.read(oBytes)) > 0)
    {
        oOutStream.write(oBytes, 0, nLength);
    }
    oInStream.close();
    oOutStream.close();
}

PS:一个文件没问题但是如果选择了多个文件并放在文本框中,则无法找到源目录

1 个答案:

答案 0 :(得分:0)

为了完全有用,我们可以真正使用更多细节(特定的例外,完整的MCVE,使用哪些SWT小部件等)。

那就是说,我认为您已经提供足够的信息来查看您的代码存在一些问题:

  1. 对于初学者,当您选择了多个文件时,您会一遍又一遍地显示相同的文件名(第一个名称)。也许这是有意的,但值得一提:

    String[] selectedFiles = fd.getFileNames();
    File file = new File(firstFile);
    for (int ii = 0; ii < selectedFiles.length; ii++ )
    {
        // You've used a FileDialog, so this should always be true
        if (file.isFile())
        {
            // Will always be the first file
            displayFiles(new String[] { file.toString()});
        }
        else
            displayFiles(file.list());
    }
    
  2. 根据上下文,我假设txtSourceText小部件。考虑到这一点,如果我们查看您的displayFiles()方法,您将拥有以下内容:

    txtSource.append(files[i]);
    

    当您反复调用displayFiles()时,您将在所有其他文件名之后添加文件名,从而有效地构建一个长String,这是所有文件名的组合。当您复制列出的文件时,将String拆分回有效的文件路径将会非常棘手。

    我的猜测是,当你说:

      

    &#34;无法找到源目录&#34;

    ...您只是抓住txtSource的内容。像这样:

    new File(txtSource.getText());
    
      

    &#34; ......一个文件没问题......&#34;

    如果Text对象中只有一个文件名,那肯定会有效,但如果有多个名称,则会导致不存在File

    例如,如果您选择了两个文件:

    • C:\用户\我\ FILEA
    • C:\用户\我\ FILEB

    您的txtSource会显示C:\Users\me\FileAC:\Users\me\FileB。路径C:\Users\me\FileAC:\Users\me\FileB很可能不存在。

    在这种情况下,new File(txtSource.getText()).exists()会返回false,并在File(内部FileInputStream)的构造函数中使用copyFile()会导致{ {1}}。

  3. 简而言之,只需确保当您拨打FileNotFoundException并创建源copyFile()对象时,您将提供您认为自己的路径,而不是连接选择的所有文件。