📜  toString 转换为 long - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:22.162000             🧑  作者: Mango

代码示例8
long l = 12345L;
String str = DecimalFormat.getNumberInstance().format(l);
System.out.println(str); //str is '12,345'
//if you don't want formatting
str = new DecimalFormat("#").format(l);
System.out.println(str); //str is '12345'