{"id":21743696,"url":"https://github.com/etuzon/java-csv-api","last_synced_at":"2025-07-19T05:08:02.463Z","repository":{"id":57733153,"uuid":"167861738","full_name":"etuzon/java-csv-api","owner":"etuzon","description":"CSV reader and writer API that support multiline fields","archived":false,"fork":false,"pushed_at":"2023-06-25T13:48:48.000Z","size":57,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-09T02:52:21.438Z","etag":null,"topics":["api","csv","java","multiline","reader","separator","writer"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/etuzon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-27T21:39:14.000Z","updated_at":"2023-06-15T11:20:51.000Z","dependencies_parsed_at":"2025-03-24T17:46:54.516Z","dependency_job_id":null,"html_url":"https://github.com/etuzon/java-csv-api","commit_stats":null,"previous_names":["tuzon/java-csv-api"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/etuzon/java-csv-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etuzon%2Fjava-csv-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etuzon%2Fjava-csv-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etuzon%2Fjava-csv-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etuzon%2Fjava-csv-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/etuzon","download_url":"https://codeload.github.com/etuzon/java-csv-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etuzon%2Fjava-csv-api/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265892258,"owners_count":23844993,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","csv","java","multiline","reader","separator","writer"],"created_at":"2024-11-26T07:08:46.900Z","updated_at":"2025-07-19T05:08:02.439Z","avatar_url":"https://github.com/etuzon.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Maven Central](https://img.shields.io/maven-central/v/io.github.etuzon/csv-api?style=plastic)\n![GitHub](https://img.shields.io/github/license/etuzon/java-csv-api?style=plastic)\n![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/etuzon/java-csv-api?style=plastic)\n\n# CSV API\n\nJava CSV Reader/writer API.\n\nAPI support multiple lines fields, and custom separators.\n    \nExample of multiple line CSV:\n\n``` text\nheader1,\"header\n2\",header3\nfield1,field2,\"field\n3\"\n```\n    \nCode Example:\n\n``` Java    \n//Read CSV file\nCsvReaderApi csvReader = new CsvReaderApi(CSV_PATH);\n\nList\u003cString\u003e headerList = csvReader.getHeaderList();\nList\u003cList\u003cString\u003e\u003e rowsList = csvReader.getRows();\n\n//Overwrite CSV file\nCsvWriterApi csvWriter = new CsvWriterApi(CSV_PATH);\ncsvWriter.setHeaders(headerList);\ncsvWriter.addRows(rowsList);\n//Add new Row that one of the fields is multiline field\n//ListUtil.asList is method in Java-Projects-Core\nList\u003cString\u003e row = ListUtil.asList(\"1\", \"2\\n123\", \"3\");\ncsvWriter.addRow(row);\n//save to file\ncsvWriter.save();\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fetuzon%2Fjava-csv-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fetuzon%2Fjava-csv-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fetuzon%2Fjava-csv-api/lists"}