gpt4 book ai didi

java - 格式问题,输出未对齐

转载 作者:行者123 更新时间:2023-12-01 19:27:45 24 4
gpt4 key购买 nike

我遇到格式问题,不知道如何解决。

基本上我得到的输出是:

ID  Name       Price    Quantity
1 Coke £0.70 5
2 Fanta £0.60 5
3 Galaxy £1.20 5
4 Snickers £1.00 5
5 Dairy Milk £1.30 5

我正在寻找一切都正确排列。

这是我的代码:

    public void itemList() {
VendItem[] itemList = stock;

System.out.println("List All Items");
System.out.println("++++++++++++++\n");
System.out.println("ID\t" + "Name\t " + "Price\t" + "Quantity");
for (int i = 0; i < itemCount; i++) {

System.out.print(i + 1 + "\t");
System.out.print(itemList[i].getName() +"\t ");

System.out.printf("£%.2f", itemList[i].getPrice());
System.out.print("\t");
System.out.print(itemList[i].getQty() +"\n");
}

最佳答案

这里有一个小提示。由于您要创建一个带有描述每一列的标题的表格,因此首先将标题格式化为您喜欢的表格显示方式。这基本上会让您非常清楚如何格式化将在该表中显示的所有数据(可能会应用一些小的增强功能)。

不要只打印标题行并用空格 ("") 或制表符 ("\t") 分隔列名称,而是使用String#format()方法代替。我说String#format()方法而不是 Console#printf()方法,因为我们需要稍后使用 header 长度来在该 header 下方创建下划线。这是一个例子:

String header = String.format("%-6s %-15s %-10s %-4s", "ID", "Name", "Price", "Quantity");
System.out.println(header);
// Underline Header. Using the String#join() method for this.
System.out.println(String.join("", Collections.nCopies(header.length(), "=")));

控制台输出将类似于:

ID     Name            Price      Quantity
==========================================

看起来不错,我们会用它。要创建标题下划线,我们使用 String#join()方法以及 Collections#nCopies()方法。

现在是时候以完全相同的格式显示标题下方的表格数据了。为此,仅在 for 循环中使用 'one' printf(),如下所示:

for (int i = 0; i < itemList.size(); i++) {
System.out.printf("%-6d %-15s £%-10.2f %-4d%n",
itemList.get(i).id,
itemList.get(i).name,
itemList.get(i).price,
itemList.get(i).quantity);
}

请注意 printf() 方法中使用的格式字符串String# 中使用的格式字符串相同format() 方法,但 printf() 的格式字符串还包含 %n标签。该标记用于生成特定于平台的行分隔符,因为我们希望将 for 循环的下一次迭代打印在控制台窗口中的新行上。根据您在帖子中提供的数据,控制台的输出应如下所示:

ID     Name            Price      Quantity
==========================================
1 Coke £0.70 5
2 Fanta £0.60 5
3 Galaxy £1.20 5
4 Snickers £1.00 5
5 Dairy Milk £1.30 5

这看起来不错,但如果数量值在标题名称“数量”下稍微居中一点,那就太好了。这可以通过调整用于表示“价格”的标签的整体间距来完成,以便使其稍宽一些。只需将 2 添加到该格式字符串标记即可使其成为 12 而不是 10,如下所示:

for (int i = 0; i < itemList.size(); i++) {
System.out.printf("%-6d %-15s £%-12.2f %-4d%n",
itemList.get(i).id,
itemList.get(i).name,
itemList.get(i).price,
itemList.get(i).quantity);
}

现在输出将如下所示:

ID     Name            Price      Quantity
==========================================
1 Coke £0.70 5
2 Fanta £0.60 5
3 Galaxy £1.20 5
4 Snickers £1.00 5
5 Dairy Milk £1.30 5

给你。您可能已经注意到,我一直在迭代的数据包含在一个集合中。我认为使用 ArrayList 或列表接口(interface)是代替数组的更好途径,因为这些列表可以根据需要增长,而不需要像数组那样预先初始化到特定大小。

这是我用于这些演示的 VendItem 类:

import java.util.Collections;

public class VendItem {

private int id;
private String name;
private float price;
private int quantity;
public static String HEADER = getHeader();

public VendItem() { }

public VendItem(int id, String name, float price, int quantity) {
this.id = id;
this.name = name;
this.price = price;
this.quantity = quantity;
}

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public float getPrice() {
return price;
}

public void setPrice(float price) {
this.price = price;
}

public int getQuantity() {
return quantity;
}

public void setQuantity(int quantity) {
this.quantity = quantity;
}

@Override
public String toString() {
return "id=" + id + ", name=" + name + ", price=" + price + ", quantity=" + quantity;
}

private static String getHeader() {
HEADER = String.format("%-6s %-15s %-10s %-4s", "ID", "Name", "Price", "Quantity") +
System.lineSeparator();
HEADER += String.join("", Collections.nCopies(HEADER.length(), "="));
return HEADER;
}

public String toFormattedString() {
return String.format("%-6d %-15s £%-12.2f %-4d", id, name, price, quantity);
}
}

这是我用来显示演示的代码:

List<VendItem> itemList = new ArrayList<>();
itemList.add(new VendItem(1, "Coke", 0.70f, 5));
itemList.add(new VendItem(2, "Fanta", 0.60f, 5));
itemList.add(new VendItem(3, "Galaxy", 1.20f, 5));
itemList.add(new VendItem(4, "Snickers", 1.00f, 5));
itemList.add(new VendItem(5, "Dairy Milk", 1.30f, 5));
// Display Title
System.out.println("List All Items");
System.out.println("++++++++++++++");
System.out.println()

// Display Table Header.
String header = String.format("%-6s %-15s %-10s %-4s", "ID", "Name", "Price", "Quantity");
System.out.println(header);
// Underline the Header.
System.out.println(String.join("", Collections.nCopies(header.length(), "=")));

// Display Table Data...
for (int i = 0; i < itemList.size(); i++) {
System.out.printf("%-6d %-15s £%-12.2f %-4d%n",
itemList.get(i).id,
itemList.get(i).name,
itemList.get(i).price,
itemList.get(i).quantity);
}

EDIT: Just another thought:

您可以使您的 VendItem 类返回 Header 和格式化数据字符串,如 toString() 方法。提供的类已经包含一个 toString() 方法,但如果您添加了一个 toFormatedString() 方法,那么控制台的显示就会变得更加容易。我已向类添加了一个 HEADER 字段和一个 toFormattedString()。通过这些附加的类项目,您的表格可以显示到控制台,如下所示:

List<VendItem> itemList = new ArrayList<>();
itemList.add(new VendItem(1, "Coke", 0.70f, 5));
itemList.add(new VendItem(2, "Fanta", 0.60f, 5));
itemList.add(new VendItem(3, "Galaxy", 1.20f, 5));
itemList.add(new VendItem(4, "Snickers", 1.00f, 5));
itemList.add(new VendItem(5, "Dairy Milk", 1.30f, 5));

System.out.println("List All Items");
System.out.println("++++++++++++++");
System.out.println();

System.out.println(VendItem.HEADER);
for (VendItem item : itemList) {
System.out.println(item.toFormattedString());
}

是不是容易多了。

关于java - 格式问题,输出未对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60981874/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com