|
|
|
@ -2,7 +2,11 @@ package sh.adb.sensorCommunityAPI;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import org.json.simple.JSONObject;
|
|
|
|
|
import org.json.simple.parser.JSONParser;
|
|
|
|
|
import org.json.simple.parser.ParseException;
|
|
|
|
|
|
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
|
import java.io.FileReader;
|
|
|
|
|
import java.io.FileWriter;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
|
@ -14,9 +18,26 @@ public class dataStore {
|
|
|
|
|
try {
|
|
|
|
|
file.write(json.toJSONString());
|
|
|
|
|
check = true;
|
|
|
|
|
|
|
|
|
|
}catch (IOException e){
|
|
|
|
|
System.out.println("Sorry cant write in file" + path);
|
|
|
|
|
System.out.println("Can not write in file: " + path);
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return check;
|
|
|
|
|
}
|
|
|
|
|
public JSONObject getjson(String path) throws IOException, ParseException {
|
|
|
|
|
JSONParser parser = new JSONParser();
|
|
|
|
|
JSONObject jsonObject = null;
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
Object obj = parser.parse(new FileReader(path));
|
|
|
|
|
jsonObject = (JSONObject) obj;
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
System.out.println("Can not create Jsonobjekt from path: " + path);
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
return jsonObject;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|