This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Servlets and the fly likes uploading only .doc files Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "uploading only .doc files" Watch "uploading only .doc files" New topic
Author

uploading only .doc files

khushi paul
Greenhorn

Joined: Feb 08, 2005
Posts: 26
hi all,
i am using apache jakarta commons fileupload for uploading files.
everything goes well but i want to restrict my users to upload .doc file only.what shud i do for that?any suggestions?
if possible pls provide example code.
thanks & regards
Khushi
Jeroen Wenting
Ranch Hand

Joined: Oct 12, 2000
Posts: 5093
You'll need to analyse the actual data streams and determine whether they're the filetype you want or not.

Dumb filters work on file extension. This is easy, just check if the filename ends with what you're looking for. Of course this doesn't work as I could just rename a file to have the extension you want (this is the way email virusses try to trick people).


42
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: uploading only .doc files
 
Similar Threads
SFTP in a Java application
how upload all files in a local folder to server
A good, easy beginner's tutorial on uploading files through JSP
Need to Convert Documents to HTML
HttpClient file upload code review