All Downloads are FREE. Search and download functionalities are using the official Maven repository.

config.ConfigParser Maven / Gradle / Ivy

There is a newer version: 3.0.0-rc1
Show newest version
package config;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;

import java.io.File;
import java.util.Iterator;
import java.util.Map;

public class ConfigParser {

    public static Config read(String location) {

        System.out.println("reading config from " + location);

        ObjectMapper mapper = new ObjectMapper();

        Config config = new Config();

        try {
            JsonNode rootNode = mapper.readTree(new File(location));
            Iterator> optionNodes = rootNode.fields();

            while (optionNodes.hasNext()) {
                Map.Entry optionNode = (Map.Entry) optionNodes.next();

                if (optionNode.getValue().isValueNode()) {
                    config.setOption(optionNode.getKey(), optionNode.getValue().asText());
                } else {
                    System.out.println("omitting non-value node " + optionNode.getKey());
                }
            }
        } catch (Exception e) {
            System.out.println(e.getMessage());
            return null;
        }

        return config;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy