After some researchs, I didn't have found any solutions to this problem: when I create a JSONObject (org.json) from a file, it return "empty":false. Why does it return this and how can I fix it?
Java:
JSONObject config = new JSONObject(Files.readAllLines(Paths.get("config/maj.json")));
JSON:
{"FyloZ":"0"}
Files.readAllLines is working return the right value.
Thanks!