Package xplanetconfigurator.util

Examples of xplanetconfigurator.util.FileUtil


        }
        if (!f.canRead()) {
            this.logger.warning("Not allowed to read configuration file: " + file);
            return;
        }
        FileUtil util = new FileUtil();
        try {
            this.configFileContent = util.getFileAsString(f);
        } catch (Exception ex) {
            this.logger.log(Level.SEVERE, null, ex);
            return;
        }
View Full Code Here


    /**
     * Writes the configuration to file
     */
    public void saveConfiguration() {
        FileUtil util = new FileUtil();
        try {
            util.printFile(this.configFile, this.configFileContent);
        } catch (Exception ex) {
            this.logger.log(Level.SEVERE, null, ex);
        }
    }
View Full Code Here

TOP

Related Classes of xplanetconfigurator.util.FileUtil

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.