Skip to content

Instantly share code, notes, and snippets.

View thasave14's full-sized avatar

thasave14 thasave14

View GitHub Profile
@thasave14
thasave14 / JSON.java
Created September 9, 2024 19:15
Simple Java utility to manage jsons easily without extra libraries
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;
public class JSON {
private Map<String, Object> map;