Add storeJson

This commit is contained in:
TechCrafter07 2021-03-03 09:56:49 +01:00
parent 41455472c7
commit 7007787848
2 changed files with 22 additions and 0 deletions

View File

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