所以我需要向文档发送附件,但是我必须验证它是否大于15mb,因此我在javascript中使用此代码来获取文件:
var objFSO = new ActiveXObject("Scripting.FileSystemObject");
var filePath = document.getElementById(fileid).value;
var objFile = objFSO.getFile(filePath);
var fileSize = objFile.size; //size in kb
我尝试创建ActiveXObject时出错,因为我的网站不受信任"没有网络标记
<!doctype html>
<!-- saved from url=(0023)http://www.contoso.com/ -->
<html>
<head>
<title>A Mark of the Web Example.</title>
</head>
<body>
<p>Hello, World</p>
</body>
</html>
所以我想知道是否有可能在XPage中有一个网络标记,以及我如何把它作为XPage的主体。
我的客户端不想手动放置安全选项,但想使用IE,请帮帮我哈哈。
如果使用javascript选择文件时有另一种检查文件大小的方法会很有趣。
答案 0 :(得分:4)
尝试使用此代码检查HTML5中的文件大小应该适用于所有现代浏览器
var fileSize=0
if (typeof FileReader !== "undefined") {
var filePath = document.getElementById(fileid);
fileSize= filePath.files[0].size;
}
检查filesize var是否存在文件的最大限制。
如果浏览器是IE10或更新版本,则使用此代码;如果浏览器较旧,则使用旧代码。
答案 1 :(得分:0)
您可以为旧浏览器创建Java验证器,但如果Javascript API可用(现代浏览器),请使用它。
node .
需要将这些验证器添加到faces-config.xml
中public class Attachment implements Validator {
private final static long BYTES_IN_1_MB = 1048576;
private final static long MAX_MB_ALLOWED = 10;
private final static String MSG_ERROR_SIZE = "File size cannot be bigger than {0} MBs";
public void validate(FacesContext fc, UIComponent uiComp, Object attach)
throws ValidatorException {
FacesMessage msg;
UploadedFile upFile = (UploadedFile) attach;
long max_bytes = BYTES_IN_1_MB * MAX_MB_ALLOWED;
// SIZE:
if (upFile.getContentLength() > max_bytes) {
String msgError = MSG_ERROR_SIZE.replace("{0}", String.valueOf(MAX_MB_ALLOWED));
msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, msgError, msgError);
throw new ValidatorException(msg);
}
}
}
然后您可以将验证器添加到fileUpload字段中:
<validator>
<validator-id>attachmentValidator</validator-id>
<validator-class>com.faces.validator.Attachment</validator-class>
</validator>