File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
java-csv-file-handling-with-opencsv/src/main/java Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ public static void main(String[] args) throws IOException {
23
23
.withIgnoreLeadingWhiteSpace (true )
24
24
.build ();
25
25
26
- List <CSVUser > CSVUsers = csvToBean .parse ();
27
-
28
- for (CSVUser CSVUser : CSVUsers ) {
29
- System .out .println ("Name : " + CSVUser .getName ());
30
- System .out .println ("Email : " + CSVUser .getEmail ());
31
- System .out .println ("PhoneNo : " + CSVUser .getPhoneNo ());
32
- System .out .println ("Country : " + CSVUser .getCountry ());
33
- System .out .println ("--------------------------- " );
26
+ List <CSVUser > csvUsers = csvToBean .parse ();
27
+
28
+ for (CSVUser csvUser : csvUsers ) {
29
+ System .out .println ("Name : " + csvUser .getName ());
30
+ System .out .println ("Email : " + csvUser .getEmail ());
31
+ System .out .println ("PhoneNo : " + csvUser .getPhoneNo ());
32
+ System .out .println ("Country : " + csvUser .getCountry ());
33
+ System .out .println ("========================== " );
34
34
}
35
35
}
36
36
}
You can’t perform that action at this time.
0 commit comments