Answers for "string of numbers separated with commas java"

1

java add commas to numbers

String number = "1000500000.574";
double amount = Double.parseDouble(number);
DecimalFormat formatter = new DecimalFormat("#,###.00");
// the zeroes after the point are the number of digits shown after the period
// you can also switch point and commas and get for example 1.002,45
System.out.println(formatter.format(amount));
// this prints 1,000,500,000.57
Posted by: Guest on July-28-2021
0

how to read comma separated values in java

try(BufferedReader br=new BufferedReader(new InputStreamReader(new FileInputStream("yourFile.csv"),StandardCharsets.UTF_8))){
    String line;
  	while((line=br.readLine())!=null){
    	String[] split=line.split(",");
      	//use the data here
    }
}
Posted by: Guest on April-15-2021

Code answers related to "string of numbers separated with commas java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language