String類的format()方法用於建立格式化的字符串以及鏈接多個字符串對象。熟悉C語言應該記得C語言的sprintf()方法,二者有相似之處。format()方法有兩種重載形式。spa
// 使用當前本地區域對象(Locale.getDefault()),制定字符串格式和參數生成格式化的字符串 String String.format(String fmt, Object... args); // 自定義本地區域對象,制定字符串格式和參數生成格式化的字符串 String String.format(Locale locale, String fmt, Object... args);
格式化說明最多會有5個部分(不包括%符號) . 下面的[]符號裏面都是選擇性的項目,所以只有%與type是必要的. 格式化說明的順序是有規定的,必需要以這個順序章指定.code
實例:orm
把新的參數加到後面,所以會有3個參數來調用format()而不是兩個,而且在第一個參數中,也就是格式化串中,會有兩個不一樣的格式化設定,也就是兩個%開頭的字符組合,第二個會應用在第一個%上面,第三個參數會用在第二%上,也就是參數會依照順序應用在%上面" 。對象
int one = 123456789; double two = 123456.789; String s = String.format("第一個參數:%,d 第二個參數:%,.2f", one, two); System.out.println(s);
示例——將"hello"格式化爲"hello "(左對齊)ip
String raw = "hello word"; String str = String.format("|%-15s|", raw); System.out.println(str);
示例——將-1000顯示爲(1,000)字符串
int num = -1000; String str = String.format("%(,d", num); System.out.println(str);
double num = 123.456789; System.out.print(String.format("浮點類型:%.2f %n", num)); System.out.print(String.format("十六進制浮點類型:%a %n", num)); System.out.print(String.format("通用浮點類型:%g ", num));
實例get
Date date = new Date(); System.out.printf("所有日期和時間信息:%tc%n",date); System.out.printf("年-月-日格式:%tF%n",date); System.out.printf("月/日/年格式:%tD%n",date); System.out.printf("HH:MM:SS PM格式(12時制):%tr%n",date); System.out.printf("HH:MM:SS格式(24時制):%tT%n",date); System.out.printf("HH:MM格式(24時制):%tR",date);
此方法不是很經常使用,在此就當作筆記記錄一下,對它有個大概的瞭解,說實話到如今寫項目基本沒用上。