unction filesize() {
var size = 0;
var browser=navigator.appName;
if (browser=="Microsoft Internet Explorer")
{
var oas = new ActiveXObject("Scripting.FileSystemObject");
var filepath = document.getElementById('file').value;
var e = oas.getFile(filepath);
size = e.size;
}
else
{
var node = document.getElementById('file');
size = node.files[0].fileSize;
}
alert(size);
}
'자바·JSP' 카테고리의 다른 글
MyBatis / iBatis에서 조건절에 Like 검색 시 처리하는 방법 (0) | 2015.01.30 |
---|---|
크롬에서 파일 다운로드시 중복헤더 수신이라 나오는 경우 (0) | 2014.10.08 |
Maven이란 무엇인가? (0) | 2014.03.06 |
[JSTL] JSTL 필수 문법 (0) | 2013.08.24 |
[오류] The type BASE64Decoder is not accessible due to restriction on required library (1) | 2013.08.19 |