首页javastringJava Data Type - 如何使用String.format将long转换为货币格式的字符串

Java Data Type - 如何使用String.format将long转换为货币格式的字符串

我们想知道如何使用String.format将long转换为货币格式的字符串。
import java.util.Locale;

public class Main {
  public static void main(String[] args) {
    long value = 123132;
    print(value);
  }

  public static void print(long value) {
    System.out
        .println(String.format(Locale.US, "$%,.2f", (double) value / 100));
  }
}