JFileChooser browses remote file system

I am trying to implement JFileChooser, which allows the user to select files on a remote system via ftp.

All I read says that this can be done by extending the FileSystemView so that all file system methods (getFiles, etc.) are overridden and routed via ftp.

I have not been able to implement this since FileSystemView still calls local functions.

Can someone confirm that this can be done and / or point me in a good direction?

+1
source share
3 answers
+2
source

FileSystemView , , , , , getSystemDisplayName *. , , , FileSystemView File, , .

+1

I am sure that this can be done. For a starter, you can check how MediaChest (aka PhotoOrganizer) did it .

Corresponding code files are found here Codase: FtpFileSystemView

0
source

All Articles