Skip to content

Powerful java configuration library for toml, yaml, hocon, json and in-memory configurations. Serialization/deserialization framework.

License

Notifications You must be signed in to change notification settings

TheElectronWill/night-config

Folders and files

NameName
Last commit message
Last commit date
May 26, 2024
Jul 31, 2024
Jan 8, 2025
Mar 8, 2024
Jun 27, 2024
Jun 29, 2024
Mar 8, 2024
Jun 29, 2024
Jul 31, 2024
May 13, 2024
Jun 29, 2024
Jun 29, 2024
Mar 8, 2024
May 25, 2024
Jan 28, 2024
May 26, 2024
May 25, 2024
Mar 8, 2024
Jan 10, 2017
Jan 29, 2024
Mar 8, 2024
Jun 27, 2024
Mar 8, 2024
Mar 8, 2024
Dec 19, 2016
May 25, 2024

Repository files navigation

Night Config

Maven Central javadoc CircleCI

Introduction

NightConfig is a powerful yet easy-to-use java configuration library, written in Java 8.

It supports the following formats:

How to use

  • Please read the extensive wiki.
  • You can also try the runnable examples (see below).

Glimpse

// Simple builder:
FileConfig conf = FileConfig.of("the/file/config.toml");

// Advanced builder, default resource, autosave and much more (-> cf the wiki)
CommentedFileConfig config = CommentedFileConfig.builder("myConfig.toml").defaultResource("defaultConfig.toml").autosave().build();
config.load(); // This actually reads the config

String name = config.get("username"); // Generic return type!
List<String> names = config.get("users_list"); // Generic return type!
long id = config.getLong("account.id"); // Compound path: key "id" in subconfig "account"
int points = config.getIntOrElse("account.score", defaultScore); // Default value

config.set("account.score", points*2);

String comment = config.getComment("user");
// NightConfig saves the config's comments (for TOML and HOCON)

// config.save(); not needed here thanks to autosave()
config.close(); // Close the FileConfig once you're done with it :)

Running the examples

Each file in examples/src/main/java has a main function and shows how to use NightConfig for many different use cases.

To run an example:

  1. Clone this repository.
  2. cd to it
  3. Run ./gradlew examples:run -PmainClass=${CLASS} by replacing ${CLASS} with the example of your choice.

For example, to run FileConfigExample.java:

./gradlew examples:run -PmainClass=FileConfigExample

The file be compiled automatically, and the given main class will be executed.

Project building

NightConfig is built with Gradle. The project is divided in several modules, the "core" module plus one module per supported configuration format. Please read the wiki for more information.

The releases are available on Maven Central and JitPack.

Old Android modules

Older versions of Android (before Android Oreo) didn't provide the packages java.util.function and java.nio.file, which NightConfig heavily uses. To attempt to mitigate these issues, I made a special version of each modules, suffixed with _android, that you could use instead of the regular modules.

These old _android modules are deprecated and will no longer receive updates. The maintainance burden of these modules is not worth it, and these versions of Android have reached end of life since several years already.