This question already has answers here:
Converting Integer to String with comma for thousands

(13个回答)


6年前关闭。





有没有一种简单的方法来格式化GUI上的变量,并在它们之间使用空格(或逗号),以便于阅读。

例:

int x = 12000000;

JLabel.setText(x);


输出1200000,但是我尝试实现以下条件。


1 200 000
1,200,000

最佳答案

您可以尝试以下方法:

int x = 12000000;
JLabel.setText(NumberFormat.getInstance().format(x));

关于java - 将格式应用于Java中的变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21250623/

10-14 02:56