Skip to content Skip to sidebar Skip to footer

Ftp Look A Like Application In Java/html

What would be a better approach to develop a FTP look a like application as the one shown below . It would allow people in my project to download all the software installables we u

Solution 1:

If your files are 100% static and served from disk, then Apache is the easiest and most efficient choice. You can still provide static index.html files to improve navigation and look-and-feel.

A wiki provides the extra benefit of easy secured file upload as well. You should look into wikis, but setup is more complex that Apache.

A webapp server (servlet/JSP, J2EE, .NET, ...) is not really relevant, because they are intended for dynamic content. They can of course serve static content, but it's overkill to use for your purpose, unless your files need to be stored in a database, instead of the file system.

Post a Comment for "Ftp Look A Like Application In Java/html"