上传时不允许使用某些文件类型

时间:2013-05-31 13:33:21

标签: jsp file-type

我正在以这种方式实现文件上传功能

<html>
<head>
<title>File Uploading Form</title>
</head>
<body>
<h3>File Upload:</h3>
Select a file to upload: <br />
<form action="UploadServlet" method="post"
                        enctype="multipart/form-data">
<input type="file" name="file" size="50" />
<br />
<input type="submit" value="Upload File" />
</form>
</body>

现在我想用一些文件类型限制用户意味着当浏览窗口打开时他将能够选择所有文件 除了.bin&amp; .dat

意味着用户将无法看到类型为.bin的文件和.bat其他他可以看到的文件,并且可以上传它们。

我熟悉accept属性但是,但在我的情况下它没用,因为用户应该能够选择除这两个之外的任何文件类型。

那么如何在没有验证的情况下实现这一目标呢?

I want to provide such a functionality that when user clicks on browse button and open a browse window to select a file , he should be able to see only files without .bin or .dat extension

有没有办法做到这一点?

谢谢,

0 个答案:

没有答案