1

FTPserverのすべてのファイルとフォルダーをJTreeに表示するために作業しています。しかし、空のフォルダがファイルとして表示されるという問題が発生しました。しかし、それらをフォルダアイコンとして表示するにはどうすればよいですか?

これが私のコードです:

public void buildTree(){

    try {
        ftpClient.connect("130.229.178.31");             
        ftpClient.login("admin", "123456");

        root = new DefaultMutableTreeNode("Welcome!");        
        for (int i = 0; i < 1; i++) {
            DefaultMutableTreeNode temp = new DefaultMutableTreeNode("FTP-Server");
            root.add(temp);
            bind(temp,"");
        }   
    } catch (IOException e1) {
        e1.printStackTrace();
        throw new RuntimeException("Client Error", e1);
    }
    try {
            ftpClient.disconnect();
    } catch (IOException e2) {
            e2.printStackTrace();
            throw new RuntimeException("Error when shutdown", e2);
    }
}   

// bind nod/subnode to the tree (recursive method)
public void bind(DefaultMutableTreeNode node,String path){
    try {

        Boolean defaultPath = true;
        while (defaultPath)
        {
            defaultPath = ftpClient.changeToParentDirectory();
        }

        ftpClient.changeWorkingDirectory(path);

        FTPFile[] files = ftpClient.listFiles();


        for(int i=0;files!=null && i<files.length;i++){
            FTPFile tempFile = files[i];
            if(tempFile.isDirectory()){




                DefaultMutableTreeNode tempNode = new DefaultMutableTreeNode(tempFile.getName());
                node.add(tempNode);


                bind(tempNode, path+"/"+tempFile.getName());
            }else{
                DefaultMutableTreeNode tempNode = new DefaultMutableTreeNode(tempFile.getName());
                node.add(tempNode);
            }
        }


    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }   
} 

FTP JTree

「sad」フォルダは空のフォルダですが、ファイルアイコンとして表示されます。それを変更する方法は?

どうもありがとうございます

PS:同じ方法が機能していません。

FileSystemView fileSystemView = FileSystemView.getFileSystemView();
setIcont(fileSystemView.getSystemIcon(File file));

ファイルではなくFTPファイルを使用しているためです。

4

1 に答える 1

1

次の 2 つの選択肢があります。

セカンドコイスが望ましいと思います。独自の TreeModel を使用して、ツリー ノードがファイルかフォルダーかを示すこともお勧めします。

于 2012-04-25T15:09:42.533 に答える