显示远程目录中的JTree /所有文件(Display remote directory/all f

2019-10-17 18:13发布

我使用JSCH来检索文件/文件夹,并在JTree的填充他们有一些问题。 在JSCH列出使用文件:

向量列表= channelSftp.ls(路径);

但是我需要列为java.io.File的类型。 这样我就可以absolutePath和文件名,我不知道如何检索作为java.io.File的类型。

这里是我的代码,我尝试对本地目录工作。

public void renderTreeData(String directory, DefaultMutableTreeNode parent, Boolean recursive) {
        File [] children = new File(directory).listFiles(); // list all the files in the directory
        for (int i = 0; i < children.length; i++) { // loop through each
            DefaultMutableTreeNode node = new DefaultMutableTreeNode(children[i].getName());
            // only display the node if it isn't a folder, and if this is a recursive call
            if (children[i].isDirectory() && recursive) {
                parent.add(node); // add as a child node
                renderTreeData(children[i].getPath(), node, recursive); // call again for the subdirectory
            } else if (!children[i].isDirectory()){ // otherwise, if it isn't a directory
                parent.add(node); // add it as a node and do nothing else
            }
        }
    }

请帮帮我,谢谢:)前

Answer 1:

你可以在你的java bean定义一些变量像

 Vector<String> listfiles=new Vector<String>(); // getters and setters

   Vector list = channelSftp.ls(path);
   setListFiles(list);  // This will list the files same as new File(dir).listFiles

在JSCH您可以绝对路径使用ChannelSftp#真实路径 ,但不幸的是有没有办法让与扩展确切的文件。但你可以使用这样的检查在目标目录或不存在是否该文件名。

 SftpATTRS sftpATTRS = null;
  Boolean fileExists = true;
    try {
    sftpATTRS = channelSftp.lstat(path+"/"+"filename.*");
        } catch (Exception ex) {
        fileExists = false;
    }


Answer 2:

试试这个(在远程服务器上的Linux):

public static void cargarRTree(String remotePath, DefaultMutableTreeNode parent) throws SftpException { 
    //todo: change "/" por remote file.separator
    Vector<ChannelSftp.LsEntry> list = sftpChannel.ls(remotePath); // List source directory structure.
    for (ChannelSftp.LsEntry oListItem : list) { // Iterate objects in the list to get file/folder names.       
        DefaultMutableTreeNode node = new DefaultMutableTreeNode(oListItem.getFilename());
        if (!oListItem.getAttrs().isDir()) { // If it is a file (not a directory).
            parent.add(node); // add as a child node
        } else{
            if (!".".equals(oListItem.getFilename()) && !"..".equals(oListItem.getFilename())) {
                parent.add(node); // add as a child node
                cargarRTree(remotePath + "/" + oListItem.getFilename(), node); // call again for the subdirectory
            }
        }
    }
}

后,您可以invoque此方法为:

DefaultMutableTreeNode nroot = new DefaultMutableTreeNode(sshremotedir);                
try {
    cargarRTree(sshremotedir, nroot);
} catch (SftpException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
} 
yourJTree = new JTree(nroot);


文章来源: Display remote directory/all files in Jtree