Package csm.uttils

Examples of csm.uttils.Archive


                debug("Saving property " + propertyKey);
        properties.put(propertyKey, propertyValue);
    }

    static void loadProperties(String path) {
        csm.uttils.Archive propFile = new Archive(path);
        String propString = propFile.readString();
        Logger.getLogger(ConfigurationManager.class.getName()).debug("File: "
                + propFile.getFile().exists());

        Logger.getLogger(ConfigurationManager.class.getName()).debug("File Path: "
                + propFile.getFile().getAbsolutePath());

        String[] properties = propString.split("\n");
        for (String property : properties) {
            String[] propertyString = property.split("=");
            if (propertyString.length == 2) {
View Full Code Here

TOP

Related Classes of csm.uttils.Archive

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.