Skip to content

thaisdo/jubilant-winner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Java ETL

This is a beginner-friendly Java ETL (Extract, Transform, Load) project. It reads a CSV file, transforms the name field to uppercase, and writes the result to a new CSV file.

Folder Structure

The workspace contains two folders by default, where:

  • src: the folder to maintain sources

Meanwhile, the compiled output files will be generated in the bin folder by default.

Project Structure

simple-java-etl/
├── data/
│   └── input.csv
├── output/
│   └── output.csv
├── src/
│   └── SimpleETL.class
│   └── SimpleETL.java
├── README.md

How to Run

  1. Open your terminal and navigate to the project root folder:
cd simple-java-etl
  1. Compile the Java source:
javac src/SimpleETL.java
  1. Run the program:
java -cp src SimpleETL

Make sure your working directory is the root folder when you run the program.

Dependency Management

The JAVA PROJECTS view allows you to manage your dependencies. More details can be found here.

About

simple-java-etl

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages