いろいろ備忘録日記

主に .NET とか Go とか Flutter とか Python絡みのメモを公開しています。

数値のカンマ付け

たまに忘れるのでここでメモ。

import java.text.*;
import java.util.*;

public class C{
    public static void main(String[] args) throws Exception{
        int    intValue    = 1018976;
        String stringValue = "1,018,976";

        NumberFormat formatter = NumberFormat.getIntegerInstance(Locale.JAPAN);

        System.out.println(formatter.format(i));
        System.out.println(formatter.parse(s));
    }
}