/** * 判断图片大小 * @return */ public static boolean judegImgMaxMin(String path){ boolean flog = true; File file = new File(path); DecimalFormat df = new DecimalFormat("#.00"); String str = df.format(file.length() / 1024.0); // 最大图片值为15k if (Float.parseFloat(str) > 15) { flog = false; } return flog; }
public static void main(String[] args) { String path = "G:\\1.jpg"; judegImgMaxMin(path); // File file=new File(path); // DecimalFormat df = new DecimalFormat("#.00"); // System.out.println(df.format(file.length()/1024.0)); // System.err.println(NumberFormat.getNumberInstance().format(number)); // System.out.println(img+""); // String add=img.toString().getBytes().toString(); // byteImage(img, "1"); }
时间: 2024-11-08 20:23:43