How to split a CSV file into multiple chunks and read those chunks in parallel in Java code

后端 未结 6 2313
别那么骄傲
别那么骄傲 2021-01-02 05:02

I have a very big CSV file (1GB+), it has 100,000 line.

I need to write a Java program to parse each line from the CSV file to create a body for a HTTP request to s

6条回答
  •  悲哀的现实
    2021-01-02 05:35

    If you're looking to unzip and parse in the same operation, have a look at https://github.com/skjolber/unzip-csv.

提交回复
热议问题