2
使用writer.format並傳遞預定義的格式字符串(%5s%10s ...),將字符串數組解析爲單獨參數的最佳方法是什麼?如何傳遞多個數組值作爲格式參數?
所以,如果我有:
Printwriter writer = new Printwriter ("table.txt");
String[] columns = {"Name", "Month", "Day"};
String form_string = "%20s%10s%5s";
如何傳遞數組元素的名稱,月,日爲ARG1,ARG2,ARG3在:
writer.format(form_string, arg1, arg2, arg3);
我們能不能在這個問題中得到一些例子 – Aaron
增加樣例代碼 – PeterSon
留在'writer.format(form_string,columns [0],columns [1],columns [2]);'。最明顯的。附:爲什麼不用「%-20s」左對齊的填充? –