小弟我要每天进步多一点系列:下传文件-获取图片的高度及宽度

我要每天进步多一点系列:上传文件-获取图片的高度及宽度
BufferedImage bi = ImageIO.read(upload);
if (bi.getHeight() > 120) {
    form.setResult(6);
    return SUCCESS;
}

if (bi.getWidth() > 120) {
    form.setResult(6);
              return SUCCESS;
}