Add storeJson

master
TechCrafter07 3 years ago
parent 41455472c7
commit 7007787848

@ -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;
}
}
Loading…
Cancel
Save