gpt4 book ai didi

java - 使用逗号分隔符将 double 转换为 2 位小数

转载 作者:行者123 更新时间:2023-12-04 05:04:43 26 4
gpt4 key购买 nike

在我看来,我有以下代码

IndexedContainer icLoaded = new IndexedContainer(); 
icLoaded.removeAllItems();
icLoaded.removeAllContainerFilters();

icLoaded.addContainerProperty("Average Cost", Double.class, null);

在模型中我有以下代码

public IndexedContainer DoFetchstockCodesTable(String passedSQL,
IndexedContainer passTable, String CustomsaleQuerry) {

try {

Class.forName(dbsettings.dbDriver);

final Connection conn = DriverManager.getConnection(
new Home().GiveMeSessionDB(), dbsettings.dbUsername,
dbsettings.dbPassword);
final Statement stmt = conn.createStatement();

ResultSet rs = stmt.executeQuery(passedSQL.trim());

while (rs.next()) {

passTable.addItem(rs.getString("item_id"));

passTable.getContainerProperty(rs.getString("item_id"),
"Average Cost").setValue(rs.getDouble("average_cost"));

如何转换下面的

 passTable.getContainerProperty(rs.getString("item_id"),
"Average Cost").setValue(rs.getDouble("average_cost"));

显示一个小数点后两位用逗号分隔的数字,如 1,000.12 使用

 NumberFormat numberFormat = new DecimalFormat("#,###.00");

当我使用下面的,什么都没有显示。

 passTable.getContainerProperty(rs.getString("item_id"),
"Average Cost").setValue(numberFormat.format(rs.getDouble("average_cost")));

最佳答案

您调用NumberFormat#format(double)并将格式化的 double 保存为 String,因为 double 是原始值,它没有固有格式 -

NumberFormat numberFormat = new DecimalFormat("#,###.00");
double val = 1000.12;
System.out.println(numberFormat.format(val));

输出是

1,000.12

编辑

你需要改变这个

icLoaded.addContainerProperty("Average Cost", Double.class, null);

icLoaded.addContainerProperty("Average Cost", String.class, null);

关于java - 使用逗号分隔符将 double 转换为 2 位小数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26509467/

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