HTML form: file requestor to show only specific extensions?

I included an upload page in my web application via a HTML form. When pressing the browse button, the file requestor shows all files in the given directory. Is it possible to set up the form so that the file requestor only shows specific file types (e.g. only extensions ".zip") - just like the file filters in JFileChooser?

[331 byte] By [MartinHilperta] at [2007-10-2 5:55:51]
# 1
There is an interface java.io.FileFilter. You can implment this interface to check for your extensions then pass it to the listFiles method of the File class.
swatdbaa at 2007-7-16 2:05:03 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
Hello? DId you read my post through? I don't ask for a Java file chooser, I ask for the settings of the browser file chooser from an HTML/JSP page.
MartinHilperta at 2007-7-16 2:05:03 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...