JAVA야

파일사이즈구하기(멀티파트용량제한에러시 )

administrators 2009. 12. 7. 14:15

} catch ( IOException ioEx ) {


String strIOMSG = ioEx.getMessage();
strIOMSG = strIOMSG.substring( strIOMSG.indexOf("of") + 3, strIOMSG.indexOf("exceeds") - 1);
int intIOMSG = Integer.parseInt( strIOMSG ) / 1024;

String alertMSG = "'송신가능한 첨부파일의 누계는 10M이하입니다.\\n";
alertMSG += "잘못된 이미지 형식의 파일은 안보일수있습니다.\\n\\n";
alertMSG += "첨부파일 누계:" + intIOMSG +"kb\\n'";

out.println("<script language='JavaScript'>");
out.println(" alert(" + alertMSG + "); ");
out.println(" history.back(1); ");
out.println("</script>");


} catch ( Exception etcEx ) {

'JAVA야' 카테고리의 다른 글

[펌]replaceAll  (0) 2009.12.23
파일관련 몇가지 메소드  (0) 2009.12.07
LinkedHashMap 순서가 있는 hash  (0) 2009.12.07
replace(1.4이전에서 구현)  (0) 2009.12.07
리플렉션  (0) 2009.12.07