0

我在使用 JSCH 检索文件/文件夹并将它们填充到 JTree 时遇到了一些问题。在 JSCH 中使用以下命令列出文件:

向量列表 = channelSftp.ls(path);

但我需要该列表为 java.io.File 类型。所以我可以得到 absolutePath 和 fileName,而且我不知道如何检索为 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
            }
        }
    }

请帮助我,谢谢之前:)

4

2 回答 2

0

试试这个(远程服务器中的 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
            }
        }
    }
}

在您可以调用此方法后:

DefaultMutableTreeNode nroot = new DefaultMutableTreeNode(sshremotedir);                
try {
    cargarRTree(sshremotedir, nroot);
} catch (SftpException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
} 
yourJTree = new JTree(nroot);
于 2014-07-03T07:05:38.940 回答
0

你可以在你的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#realpath绝对路径, 但不幸的是,没有办法获得带有扩展名的精确文件。但是您可以使用类似的东西来检查目标目录中是否存在该文件名。

 SftpATTRS sftpATTRS = null;
  Boolean fileExists = true;
    try {
    sftpATTRS = channelSftp.lstat(path+"/"+"filename.*");
        } catch (Exception ex) {
        fileExists = false;
    }
于 2013-02-25T18:04:18.943 回答