0Pricing
Java Academy · Lesson

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

  1. Serialization Basics
  2. Simple CSV/JSON Handling
  3. File Walking & Utilities
← Back to Java Academy