(转)Java按指定行数读取文件

Posted SimonHu1993

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(转)Java按指定行数读取文件相关的知识,希望对你有一定的参考价值。

package test  
import java.io.File;  
import java.io.FileReader;  
import java.io.IOException;  
import java.io.LineNumberReader;  
public class ReadSelectedLine{  
    // 读取文件指定行。  
    static void readAppointedLineNumber(File sourceFile, int lineNumber)  
            throws IOException {  
        FileReader in = new FileReader(sourceFile);  
        LineNumberReader reader = new LineNumberReader(in);  
        String s = "";  
        if (lineNumber <= 0 || lineNumber > getTotalLines(sourceFile)) {  
            System.out.println("不在文件的行数范围(1至总行数)之内。");  
            System.exit(0);  
        }  
        int lines = 0;  
        while (s != null) {  
            lines++;  
            s = reader.readLine();  
            if((lines - lineNumber) == 0) {  
             System.out.println(s);  
             System.exit(0);  
            }  
        }  
        reader.close();  
        in.close();  
    }  
    // 文件内容的总行数。  
    static int getTotalLines(File file) throws IOException {  
        FileReader in = new FileReader(file);  
        LineNumberReader reader = new LineNumberReader(in);  
        String s = reader.readLine();  
        int lines = 0;  
        while (s != null) {  
            lines++;  
            s = reader.readLine();  
        }  
        reader.close();  
        in.close();  
        return lines;  
    }  
      
    /** 
     * 读取文件指定行。 
     */  
    public static void main(String[] args) throws IOException {  
        // 指定读取的行号  
        int lineNumber = 2;  
        // 读取文件  
        File sourceFile = new File("D:/java/test.txt");  
        // 读取指定的行  
        readAppointedLineNumber(sourceFile, lineNumber);  
        // 获取文件的内容的总行数  
        System.out.println(getTotalLines(sourceFile));  
    }  
}  

  

以上是关于(转)Java按指定行数读取文件的主要内容,如果未能解决你的问题,请参考以下文章

Python 读取指定行数

如何让SAS从第二行数据读取

如何读取Matlab TXT文件中的指定列

ruby读取csv行数

java中有没有 读取大文本文件(500MB以上),指定行数的某一行数据的类库? 有的话请给出教程,谢谢~

[转]统计代码行数