Я пытаюсь вставить свой JSON в свой плагин, но он не работает. Вот мой код, чтобы получить его, и вот путь: static File json = new File("config.JSON");
.
public class JSONReader extends JavaPlugin {
static File json = new File("config.JSON");
static File getJSON() {
return json;
}
static JSONObject setupJson() {
try {
JSONParser jsonParser = new JSONParser();
Object parsed = jsonParser.parse(new FileReader(json.getPath()));
JSONObject jsonObject = (JSONObject) parsed;
return jsonObject;
} catch (ParseException | IOException e) {
return null;
}
}
}