Have you thought about using Apache's FTP library or JSCH's SFTP library?
Not Really .. I'll have to google them
Before we can tell you how to hide the link, we need to know how you are displaying the link in the first place. Is this a Swing application? A web application? Something else?
The link is sent in this format: ftp ://address:port/filename (optionally the path), and it is displayed in a swing application (Text Area) as a
String so far.
I've been playing around with HTTP (http instead of ftp), I was able to download files from the webserver (Apache
Tomcat). Hoewever; the upload seems to be much trickier and I couldn't find a way to do it!!
So I guess that I will continue using ftp ..
