Heim  >  Fragen und Antworten  >  Hauptteil

java如何高效读写10G以上大文件

有一份10G以上大文本文件,需要替换里面的一些文本信息(每一行都有),如何高效读并替换掉生成新的文件

黄舟黄舟2765 Tage vor581

Antworte allen(5)Ich werde antworten

  • 伊谢尔伦

    伊谢尔伦2017-04-18 10:54:01

    1. 先分割成多个文件

    2. 多个线程操作多个文件,避免两个线程操作同一个文件

    3. 按行读文件并按行写入新的文件

    4. 合并所有文件

    1,4用linux命令就可以了~

    Antwort
    0
  • 怪我咯

    怪我咯2017-04-18 10:54:01

    File file = new File(filepath);
    BufferedInputStream fis = new BufferedInputStream(new FileInputStream(file));
    BufferedReader reader = new BufferedReader(new InputStreamReader(fis,"utf-8"),510241024);
    String line = "";
    while((line = reader.readLine()) != null){

    //进行替换操作和其他业务    

    }

    Antwort
    0
  • 迷茫

    迷茫2017-04-18 10:54:01

    为了提高性能,你可能需要 mapped IO,具体可以参考:

    1. 为何要在Java中使用内存映射文件(Memory Mapped File)或者MappedByteBuffer

    2. java大文件读写操作,java nio 之MappedByteBuffer,高效文件/内存映射

    3. java.io和java.nio性能简单对比

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-04-18 10:54:01

    如果是简单文本的替换,用linux的sed命令就行了。

    如果是比较复杂的文本替换,看下面:

    1. http://stackoverflow.com/ques...

    2. http://www.baeldung.com/java-...

    Antwort
    0
  • 怪我咯

    怪我咯2017-04-18 10:54:01

    用spark分析、
    lines=sc.textFile("your_file");
    filterlines=lines.filter(your_filter_function)
    filterlines.xxx()

    Antwort
    0
  • StornierenAntwort