Skip to content

Java tools to read config files in .ini and .properties

Notifications You must be signed in to change notification settings

CormickKneey/ConfigReader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

ConfigReader

Java tools to read config files in .ini and .properties

Usage

import Cybertron.johan.conf.ConfigInterface;
import Cybertron.johan.conf.Reader.Loader;
        ConfigInterface conf = Loader.load("conf.properties(or .ini)");
        String key = conf.getString("key");
        // Support Integer , Long , Boolean , Double
        System.out.println(key);

.ini

[section] key=value ; annotation

.properties

key=value key.child=value

About

Java tools to read config files in .ini and .properties

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages