-2

我想从 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 的内容并添加了不同的价格并将其复制到应用程序的 /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();
        }

    }
4

2 回答 2

0

我认为你不需要这条线

String line = inputString.replaceAll("[^0-9.]", "");

相反,你必须说

String line = inputString;

它必须为你工作。

于 2012-11-07T16:31:28.773 回答
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());
于 2012-11-09T13:42:40.423 回答