我想將一個3位integer
格式化爲4位數string
值。例如:如何將3位整數格式化爲4位數字符串?
int a = 800;
String b = "0800";
當然格式化將在String b
語句完成。多謝你們!
我想將一個3位integer
格式化爲4位數string
值。例如:如何將3位整數格式化爲4位數字符串?
int a = 800;
String b = "0800";
當然格式化將在String b
語句完成。多謝你們!
明白了,謝謝! –
廢話,差不多24小時,我完全忘記接受這個答案!我的錯! –
String b = "0" + a;
難道是更容易?
@SandiipPatil那不會編譯。 –
它會更容易嗎?不,但可能更強大/靈活。 – Thilo
@Thilo:同意。但問題特別要求3位整數。爲什麼當事情變得簡單時就讓事情變得複雜?現在,我也同意你的解決方案遠非如此複雜:-) –
如果你想擁有它只有一次使用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
實際上,這可能會稍微好一些。 –
看看http://docs.oracle.com/javase/tutorial/java/data/numberformat.html – arynaq
@arynaq thx!這非常有幫助! –