Skip to content
Advertisement

How to read csv using column name in java

I have tried reading a column with its index using below code:

JavaScript

for eg.

JavaScript

As I am passing col index in col1, but I am not able to store the column header text in variable to print that which column is having blank value.

Is there any way I can read the column to validate blank cells and then print the column name in result saying “This column is having blank cell and hence file is invalid”

In above table, How to read columns with its name. Say if I pass HEADER 2 it should read all the row data and if it finds blank field

Advertisement

Answer

According to your input data example:

JavaScript

So you have a file composed from ha header line, where you have your column names, and the data.

To read the colimns name you need to parse the first row differently:

JavaScript

So you put each column name in your map and you save the index of the column.

The size of the map it is also the row len to check if you read all the expected fields.

Then you read the data:

JavaScript

In your example col1 is the index not the name of the column, but you never set it with a value, maybe this is one of the issues.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement