我正在使用此方法從文本文件中打印一些數據,並嘗試將其輸出爲表格格式。 第一個參數只是請求一個必須位於中間列的字,而colSize
應設置列寬。將輸出轉換成表格
public String printTable(String midWord, int colSize) {
String col1 = "";
String col2 = midWord;
String col3 = "";
System.out.printf("%-15s %15s %n", col1, midWord, col3);
//System.out.format ("%-15s %15s %n", col1, midWord, col3);
return null;
}
我一直在使用這兩種printf
和System.out.format
,但他們似乎都在做同樣的事情,試圖所以我不知道他們。
任何人都可以解釋我缺少這種方法。
你可以顯示文件的內容和解析文件的代碼嗎? – vlatkozelka
什麼問題? colSize在哪裏? – 2016-11-22 20:21:49
@LaneSurface我不知道如何使用它...well️ – RS786