sapienza88 commented on code in PR #982:
URL: https://github.com/apache/fesod/pull/982#discussion_r3710564967
##########
fesod-sheet/src/test/java/org/apache/fesod/sheet/FesodSheetTest.java:
##########
@@ -253,6 +255,31 @@ void testReadSheet_withAllParams_shouldReturnBuilder() {
Assertions.assertNotNull(builder);
}
+ @Test
+ void testReadCsv_withColumnIndexes_shouldFilterColumns() throws Exception {
+
+ String csvContent = "1,Alice,30,Female\n2,Bob,25,Male";
+ File csvFile = tempDir.resolve("test_columns.csv").toFile();
+ FileUtils.writeStringToFile(csvFile, csvContent,
StandardCharsets.UTF_8);
+
+ List<Integer> targetColumns = Arrays.asList(0, 2);
+
+ List<Map<Integer, String>> readResults = FesodSheet.read(csvFile)
+ .csv()
+ .includeColumnIndexes(targetColumns)
+ .sheet(0)
+ .doReadSync();
Review Comment:
Can you point out the test example?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]