java知識
- public static void main(String[] args) {
- for (int i = 0; i < 10; i++) {
- System.out.println(String.format("%06d", i));
- }
- <strong> System.out.println(String.format("%tF %1$tT",new Date()));
- System.out.println(String.format("%1$TY-%1$Tm-%1$Td %1$TH:%1$TM:%1$TS",new Date()));
-
- </strong>
- }
- %06d :
- %是格式化輸入接受參數的標記
- 0格式化命令:結果將用零來填充
- 6:填充位數
- d:表明十進制 數據
-
- console:
-
- 000001
- 000002
- 000003
- 000004
- 000005
- 000006
- 000007
- 000008
- 000009
-
- 2013-09-06 17:31:58
- 2013-09-06 17:31:58
歡迎關注本站公眾號,獲取更多信息