Skip to content

Instantly share code, notes, and snippets.

View owlstead's full-sized avatar

Maarten Bodewes owlstead

View GitHub Profile
@owlstead
owlstead / Csv.java
Last active August 16, 2021 10:43
Code share for StackOverflow CSV example
package com.stackoverflow;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.HashMap;
public class Csv {