Forum Discussion

aparna_11's avatar
aparna_11
New Contributor
4 years ago
Solved

how to read csv file having delimiters as separators using groovy script

Can anyone share sample code how to read CSV file having delimiter as separator and what all jars required
  • ZDGN's avatar
    4 years ago

    Hi aparna_11 

     

    May be you could find some useful informations here:

    https://www.baeldung.com/groovy-file-read

     

    For example by reading your file line by line, and then split each line with the separator you use into your CSV file.

    It will provide you a list of items for your line.

    To go further, you can also declare a specific class for stocking your values and use a list to populate all of your data.

     

    Hope this helps.

     

     

    David.