2013-07-17 76 views
11

我想將一個3位integer格式化爲4位數string值。例如:如何將3位整數格式化爲4位數字符串?

int a = 800; 
String b = "0800"; 

當然格式化將在String b語句完成。多謝你們!

+3

看看http://docs.oracle.com/javase/tutorial/java/data/numberformat.html – arynaq

+0

@arynaq thx!這非常有幫助! –

回答

29

使用String#format

String b = String.format("%04d", a); 

對於其它的格式請參documentation

+0

明白了,謝謝! –

+0

廢話,差不多24小時,我完全忘記接受這個答案!我的錯! –

3
String b = "0" + a; 

難道是更容易?

+0

@SandiipPatil那不會編譯。 –

+1

它會更容易嗎?不,但可能更強大/靈活。 – Thilo

+2

@Thilo:同意。但問題特別要求3位整數。爲什麼當事情變得簡單時就讓事情變得複雜?現在,我也同意你的解決方案遠非如此複雜:-) –

1

請嘗試

String.format("%04d", b); 
+1

在'b'旁邊而不是'a',這個答案與Thilo的答案有什麼不同? – Maroun

+0

@MarounMaroun:好吧,看看時間戳。最有可能只是一個競爭條件。 – Thilo

5

如果你想擁有它只有一次使用String.format("%04d", number) - 如果你需要更頻繁並希望集中模式(例如配置文件),請參閱下面的解決方案。

Btw。數字格式有一個Oracle tutorial

要長話短說:

import java.text.*; 

public class Demo { 

    static public void main(String[] args) { 
     int value = 123; 
     String pattern="0000"; 
     DecimalFormat myFormatter = new DecimalFormat(pattern); 
     String output = myFormatter.format(value); 
     System.out.println(output); //
    } 
} 

希望有所幫助。 * Jost

+0

實際上,這可能會稍微好一些。 –

0

您可以隨時使用Jodd Printf。在你的情況下:

Printf.str("%04d", 800); 

會做這項工作。這個類是在Sun添加String.format之前創建的,並且有更多的格式選項。

相關問題