//String n = String.format("%04d", num);// num转换成4为字符,不足前面补0 num为int String n = String.format("%02d", num);// num转换成2为字符,不足前面补0 20131217