How to count lines in file txt android

2020-02-13 05:30发布

Can't understand how to count lines. Here is my code.

 void load() throws IOException        
{        
    File sdcard = Environment.getExternalStorageDirectory();
    File file = new File(sdcard,"agenda.file");
    StringBuilder text = new StringBuilder();

    try {
        BufferedReader br = new BufferedReader(new FileReader(file));
        String line;

        while ((line = br.readLine()) != null) {
            text.append(line);
            text.append('\n');

           TextView te=(TextView)findViewById(R.id.textView1);

        }


    }
    catch (IOException e) {
        //You'll need to add proper error handling here
    }
    Button monpopb = (Button) findViewById(R.id.button13);
    monpopb.setText(text);  

} So, how to count and settext in TextView? Thank you!

2条回答
▲ chillily
2楼-- · 2020-02-13 06:03

For already existing text files its possible to use LineNumberReader class and LineNumberReader.skip() and LineNumberReader.getLineNumber() methods to get total lines count in file. Something like that:

...
InputStream inputStream = new FileInputStream(new File("<FILE_NAME>"));
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
LineNumberReader lineNumberReader = new LineNumberReader(bufferedReader);
try {
    lineNumberReader.skip(Long.MAX_VALUE);
} catch (IOException e) {
    e.printStackTrace();
}
linesInFile = lineNumberReader.getLineNumber() + 1;  // because line numbers starts from 0
...
查看更多
戒情不戒烟
3楼-- · 2020-02-13 06:19

Is this what you're looking for?

void load() throws IOException        
{        
File sdcard = Environment.getExternalStorageDirectory();
File file = new File(sdcard,"agenda.file");
StringBuilder text = new StringBuilder();

try {
    BufferedReader br = new BufferedReader(new FileReader(file));
    String line;

    TextView te=(TextView)findViewById(R.id.textView1);
    int lineCount = 0;
    while ((line = br.readLine()) != null) {
        text.append(line);
        text.append('\n');

        lineCount++;
    }
    te.setText(String.valueOf(lineCount));

}
catch (IOException e) {
    //You'll need to add proper error handling here
}
    Button monpopb = (Button) findViewById(R.id.button13);
    monpopb.setText(text);  
}
查看更多
登录 后发表回答