-1

我正在尝试以具有多个标题的表格格式打印显示数据。我正在使用以下printf语句:

System.out.format("%-15s %-15s %-25s %-15s %-20s %s %n", "Id", "name", "Mode", "Total weight", "Arrival loc", "Departure loc");

但这会产生以下错误:

PrintStream 类型中的方法格式不适用于参数(字符串、字符串、字符串、字符串、字符串、字符串)

用格式打印此语句的可能解决方案是什么?

4

1 回答 1

0

你能发布完整的代码吗?因为 System.out.format("%-15s %-15s %-25s %-15s %-20s %s %n", "Id", "name", "Mode", "Total weight", "Arrival loc ", "出发地点"); 对我来说很好。在此处输入图像描述

于 2017-08-23T09:53:57.437 回答