我想从TextView中的文件中显示所有价格的总和(例如£18.99£50等),目前它只是读取/显示文件中的最后价格。
这是我当前写入文件的代码:
total.setText(total.getText());
try {
FileOutputStream fos = openFileOutput("TotalSavings", Context.MODE_PRIVATE);
fos.write(total.getText().toString().getBytes());
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
这是我目前从文件中读取的代码(成员burmat建议进行一些更改):
public void savingstotalbutton(View view) {
double total = 0;
try {
BufferedReader inputReader = new BufferedReader(new InputStreamReader(
openFileInput("TotalSavings")));
String inputString;
@SuppressWarnings("unused")
StringBuffer stringBuffer = new StringBuffer();
while ((inputString = inputReader.readLine()) != null) {
if (inputString.length() > 0) {
String line = inputString.replaceAll("[^0-9.]", "");
total = total + Double.parseDouble(line);
}
}
savingstotaltext.setText(String.valueOf(total));
} catch (IOException e) {
e.printStackTrace();
}
}
感谢任何帮助。
修改 我手动修改了TotalSavings.txt的内容并添加了不同的价格并将其复制到App的/ files文件夹中。它读取所有价格并给出有效的总和,但问题是写函数会覆盖第一行,它永远不会进入下一行。
编辑2:整个代码使用calc按钮显示计算并将结果写入文件TotalSavings.txt
public void calc(View view) {
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
if (price.getText().toString().equals(""))
return;
if (disc.getText().toString().equals(""))
return;
double priceVal = Double.parseDouble(price.getText().toString());
double discVal = Double.parseDouble(disc.getText().toString());
double discount = priceVal / 100.0 * discVal;
int di = (int) (discount * 100);
double totalVal = priceVal - (di / 100.0);
NumberFormat nf = NumberFormat.getCurrencyInstance(Locale.getDefault());
savings.setText(nf.format(discount));
total.setText(nf.format(totalVal));
savings.setText(savings.getText());
try {
FileOutputStream fos = openFileOutput("TotalSavings", Context.MODE_PRIVATE);
fos.write(savings.getText().toString().getBytes());
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
}
答案 0 :(得分:0)
我认为你不需要这一行
String line = inputString.replaceAll("[^0-9.]", "");
相反,你必须说
String line = inputString;
它必须适合你。
答案 1 :(得分:0)
写入文件的问题的答案是每次你写的文件都是你以前写过的文件,你需要做的就是改变
FileOutputStream fos = openFileOutput("TotalSavings", Context.MODE_PRIVATE)
为:
FileOutputStream fos = openFileOutput("TotalSavings", Context.MODE_PRIVATE | Context.MODE_APPEND)
这告诉android你想要附加到文件并保持私密。
修改的 您遇到的新问题是因为您要将文本直接放在其他文本之后,要强制在文件中添加新行。最简单的方法是:
String totalFromField = total.getText().toString() + "\n";
fos.write(totalFromField.getBytes());