Welcome
Intro to Configuration
Configuration config = new YamlConfiguration(new File("file.yml"));
config.setResourcePath("file.yml"); // The name of the file in the resource folder.
config.load();String hello = config.getString("hello", "hello world");
config.set("hello", "hello again");config.save();Intro to Databases
Last updated