Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 296 Bytes

table-writing.md

File metadata and controls

9 lines (7 loc) · 296 Bytes

Reading tabular data

You can write a Table into a CSV file:

URL url = new URL("https://raw.githubusercontent.com/frictionlessdata/tableschema-java/master/src/test/resources/fixtures/simple_data.csv");
Table table = Table.fromSource(url);
table.write("/path/to/write/table.csv");