关于限制网站上传图片大小的问题,我现在用的是JSP,想要上传图片,在上传之前就判断图片大小是否符合要求 10
网上找的一大堆都关于获取图片大小的代码,都几乎是不能用或者不实际的。有个只能用在IE6上面,有些就必须得降低客户端浏览器的安全度。求实用的方法。...
网上找的一大堆都关于获取图片大小的代码,都几乎是不能用或者不实际的。有个只能用在IE6上面,有些就必须得降低客户端浏览器的安全度。求实用的方法。
展开
展开全部
在后台用java判断吧 int size = form.getPicture().getFileSize();
if (size > 102400) {// 图片不能大于100kb
request.getSession().setAttribute("isRightSize", "isRightSize");
if(pageflag != null && !"".equals(pageflag) && !"null".equals(pageflag) && "account".equals(pageflag)){
String url = request.getContextPath()+"/user/account.htm";
response.getWriter().print("<script>window.location.href='"+url+"';</script>");
return null;
}else {
request.getSession().setAttribute("photo", "photo");
String url = request.getContextPath()+"/user/account.htm";
response.getWriter().print("<script>window.location.href='"+url+"';</script>");
return null;
}
}
if (size > 102400) {// 图片不能大于100kb
request.getSession().setAttribute("isRightSize", "isRightSize");
if(pageflag != null && !"".equals(pageflag) && !"null".equals(pageflag) && "account".equals(pageflag)){
String url = request.getContextPath()+"/user/account.htm";
response.getWriter().print("<script>window.location.href='"+url+"';</script>");
return null;
}else {
request.getSession().setAttribute("photo", "photo");
String url = request.getContextPath()+"/user/account.htm";
response.getWriter().print("<script>window.location.href='"+url+"';</script>");
return null;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询