我正在尝试以具有多个标题的表格格式打印显示数据。我正在使用以下printf
语句:
System.out.format("%-15s %-15s %-25s %-15s %-20s %s %n", "Id", "name", "Mode", "Total weight", "Arrival loc", "Departure loc");
但这会产生以下错误:
PrintStream 类型中的方法格式不适用于参数(字符串、字符串、字符串、字符串、字符串、字符串)
用格式打印此语句的可能解决方案是什么?