选装售后
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. import java.text.DecimalFormat;
  2. import java.text.SimpleDateFormat;
  3. public class SimpleTest {
  4. private static final SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM");
  5. public static void main(String[] args) {
  6. Long a = 1L;
  7. DecimalFormat decimalFormat = new DecimalFormat("000000");
  8. String format = decimalFormat.format(a);
  9. System.out.println(format);
  10. }
  11. }