如何计算文件中的数字总和?

时间:2012-11-06 14:41:55

标签: java android filereader

我想显示从TextView中的文件中添加的所有数字的总和,目前它只是读取/显示文件中的最后一个数字。

这是我当前写入文件的代码:

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();
        }

这是我目前从文件中读取的代码:

public void savingstotalbutton(View view) {

        try {
            BufferedReader inputReader = new BufferedReader(new InputStreamReader(
                    openFileInput("TotalSavings")));
            String inputString;
            StringBuffer stringBuffer = new StringBuffer();                
            while ((inputString = inputReader.readLine()) != null) {
                stringBuffer.append(inputString + "\n");
            }
            savingstotaltext.setText(stringBuffer.toString());
        } catch (IOException e) {
            e.printStackTrace();
        }               
    }

谁能告诉我怎么做?

1 个答案:

答案 0 :(得分:2)

假设线上唯一的东西是整数,你不能这样做吗?

public void savingstotalbutton(View view) {

    int total = 0;

    try {
        BufferedReader inputReader = new BufferedReader(new InputStreamReader(
                openFileInput("TotalSavings")));
        String inputString;
        StringBuffer stringBuffer = new StringBuffer();                
        while ((inputString = inputReader.readLine()) != null) {
            //stringBuffer.append(inputString + "\n");
            total = total + Integer.parseInt(inputString);
        }
        //savingstotaltext.setText(stringBuffer.toString());
        savingstotaltext.setText(String.ValueOf(total));
    } catch (IOException e) {
        e.printStackTrace();
    }               
}

编辑:评论中每个问题的扩展答案

如果您使用的是小数,只需将int total更改为double total,将Integer.parseInt()更改为Double.parseDouble()即可。此外,如果行上的字符数多于数字/小数,请尝试使用以下内容仅删除并使用数字,并确保该行中有内容:

if (inputString.length() > 0) {
    String line = inputString.replaceAll("[^0-9.]", "");
    total = total + Double.parseDouble(line);
}