diff --git a/src/main/java/sh/adb/sensorCommunityAPI/dataStore.java b/src/main/java/sh/adb/sensorCommunityAPI/dataStore.java new file mode 100644 index 0000000..90b2b17 --- /dev/null +++ b/src/main/java/sh/adb/sensorCommunityAPI/dataStore.java @@ -0,0 +1,22 @@ +package sh.adb.sensorCommunityAPI; + + +import org.json.simple.JSONObject; + +import java.io.FileWriter; +import java.io.IOException; + +public class dataStore { + public boolean storeJson(String path, JSONObject json) throws IOException { + boolean check = false; + + FileWriter file = new FileWriter(path); + try { + file.write(json.toJSONString()); + check = true; + }catch (IOException e){ + System.out.println("Sorry cant write in file" + path); + } + return check; + } +} \ No newline at end of file diff --git a/src/main/java/sh/adb/sensorCommunityAPI/get.json b/src/main/java/sh/adb/sensorCommunityAPI/get.json new file mode 100644 index 0000000..e69de29