How to format currency in Java

3 Answers

0 votes
import java.text.NumberFormat;

public class MyClass {
    public static void main(String args[]) {
        NumberFormat formatter = NumberFormat.getCurrencyInstance();

        double d = 13800.50;
        String s = formatter.format(d);

        System.out.println(s);
    }
}




/*
run:

$13,800.50

*/

 



answered Jan 5, 2023 by avibootz
0 votes
import java.text.NumberFormat;
import java.util.Locale;

public class MyClass {
    public static void main(String args[]) {
        double price = 1319474.95;

		Locale b = new Locale("en", "GB");
		NumberFormat nf = NumberFormat.getCurrencyInstance(b);
		
		System.out.println(nf.format(price));
    }
}




/*
run:

£1,319,474.95

*/

 



answered Jan 5, 2023 by avibootz
0 votes
import java.text.NumberFormat;
import java.util.Locale;
 
public class MyClass {
    public static void main(String args[]) {
        NumberFormat nf = NumberFormat.getCurrencyInstance(Locale.FRANCE);
        
        double price = 1730024.89;
        
        String s = nf.format(price);
        
        System.out.println(s); 
    }
}
 
 
 
 
/*
run:
 
1 730 024,89 €
 
*/

 



answered Oct 13, 2023 by avibootz

Related questions

1 answer 186 views
186 views asked Sep 6, 2016 by avibootz
1 answer 230 views
1 answer 244 views
1 answer 172 views
172 views asked Nov 18, 2021 by avibootz
1 answer 254 views
1 answer 155 views
2 answers 235 views
...