Java tutorial
import java.text.DecimalFormat; import java.util.Currency; import java.util.Locale; public class Main { public static void main(String[] argv) throws Exception { DecimalFormat format = new DecimalFormat(); format.setCurrency(Currency.getInstance(Locale.GERMANY)); System.out.println(format.getCurrency()); } }