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; } }