2

最终用户可以在 Visualforce 页面中上传文件。在后端,我需要创建一个允许的文件扩展名列表,并将用户限制在该列表中。如何创建扩展列表并对其进行验证?很感谢任何形式的帮助。

4

1 回答 1

1

你不需要顶点吗?

<apex:inputFile>accept你可以使用的参数。请记住,这将检查contentType,而不是扩展名(这是更合适的方法)。

如果您仍然希望在 apex 中进行验证 - 可能是这样的?

String fileName = 'foobar.xls';
Set<String> acceptedExtensions = new Set<String> {'.doc','.txt', '.jpg'};

Boolean found = false;
for(String s : acceptedExtensions){
    if(found = fileName.endsWith(s)){ // yes, there's only one "=", I do want assignment here
        break;
    }
}
if(!found){ // after the whole loop it's still false?
    ApexPages.addMessage(...);
}
于 2014-01-23T07:24:31.533 回答