I have a Java application that at some point selects files from the local file system using JFileChooser.showOpenDialog ().
Now I want it in client-server setup. This means opening a GUI (file browser) to select files on the server. I have already tried several scripts to continue using JFileChooser, but I cannot configure the correct setting.
Does anyone know how to create a file browser on a remote server if I know the path that the file browser should use by default in advance? So, for example, if the server address is "http://sand.int.group.com:9083", and at this address the directory that I want to use by default is in "/ home / myDir /". How can I display a file browser window so that it displays files located in a directory on this server?
source
share