Simple CSV/JSON Handling
Learn to handle simple CSV and JSON data using built-in string operations and libraries.
Intro
CSV and JSON are common formats. Java can handle them with simple tools: String.split for CSV and libraries like org.json for JSON.
CSV basics
CSV (Comma-Separated Values) stores rows of data separated by commas. Each line is one record.
All lessons in this course
- Serialization Basics
- Simple CSV/JSON Handling
- File Walking & Utilities