序號格式化

aaacarrot發表於2024-05-17

場景1:

把數字,按一定的格式輸出,比如前面補幾個 0 。

	public static void main(String[] args) {
		NumberFormat format = new DecimalFormat("000000");
		String indexStr = format.format(2052);
		System.out.println(indexStr);
		// 輸出: 0002052
	}

相關文章