BigDecimalのフォーマット処理

private final DecimalFormat df = new DecimalFormat("#.##");

BigDecimal formatted = new BigDecimal(df.format(bigdecimal));

bigdecimalをフォーマット処理する前の変数、formattedをフォーマット後の変数とすると上記のような方法でBigDecimalのフォーマット処理が出来る。

また、DecimalFormat()内の指定を変更することで独自のフォーマットパターンでフォーマット処理をすることが出来る。