Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

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 177 views
177 views asked Sep 6, 2016 by avibootz
1 answer 191 views
1 answer 209 views
1 answer 160 views
160 views asked Nov 18, 2021 by avibootz
1 answer 231 views
1 answer 142 views
2 answers 217 views
...