private int[] colWidths() { int cols = -1; for(String[] row : rows) cols = Math.max(cols, row.length); int[] widths = new int[cols]; for(String[] row ...
確定! 回上一頁