Metin dosyasından toplam tutarı hesaplamaya çalışıyorum, şimdiye kadar fiyatları bastım ama toplam miktarı hesaplamak için kullanılacak koddan emin değilim.Jlist hesaplaması
OrderPage.setText("Diner Number | Food | Quantity | Calories | Price");
DefaultListModel listModel = new DefaultListModel();
try {
FileReader file = new FileReader("savedFoodData.txt");
BufferedReader buffer = new BufferedReader(file);
while ((line = buffer.readLine()) != null) {
outputDinerChoice = line;
outputDinerChoice = outputDinerChoice.replaceAll(",", " ");
listModel.addElement(outputDinerChoice);
dinersChoice = outputDinerChoice.split(" ");
System.out.println(dinersChoice[4]);
}
böyle yola olurdu dosyası ("savedFoodData.txt"):
1/2,Burger,1,156kcal,£2.70
1/2,Chicken,1,159kcal,£3.90
1/2,Steak,1,50kcal,£7.00
2/2,Noodles,1,398kcal,£4.90
2/2,Pizza,1,156kcal,£2.70
1/2,Beer,1,20kcal,£4.10
1/2,Coke Tea,1,5kcal,£1.50
Ve bu kod
System.out.println(dinersChoice[4]);
£2.70
£3.90
£7.00
£4.90
£2.70
£4.10
£1.50
çıktısını olacaktır:
"Diner Number | Food | Quantity | Calories | Price"
içerecektir Hangi
Ve ben t hesaplamak çalışıyorum Bundan toplam fiyat, bunu nasıl yapardım?
İpucu: Use substring ve 'Double.parseDouble()' – Mordechai