Package org.apache.muse.util

Examples of org.apache.muse.util.MultiMap


    {
        super.initialize();
       
        _installDir = getInitializationParameter("httpd-install-dir");
       
        MultiMap configParams = null;
       
        try
        {
            configParams = readConfigFile(_installDir + "/conf/httpd.conf");
        }
View Full Code Here


        throws IOException
    {
        BufferedReader reader = new BufferedReader(new FileReader(filePath));
        String nextLine = null;
       
        MultiMap configParams = new MultiMap();
       
        while ((nextLine = reader.readLine()) != null)
        {
            nextLine = nextLine.trim();
           
            if (nextLine.length() == 0 ||
                nextLine.charAt(0) == '#' ||
                nextLine.charAt(0) == '<')
                continue;
           
            int space = nextLine.indexOf(' ');
            String name = nextLine.substring(0, space);
            String value = nextLine.substring(space + 1);
            configParams.put(name, value);
        }
       
        return configParams;
    }
View Full Code Here

    {
        super.initialize();
       
        _installDir = getInitializationParameter("httpd-install-dir");
       
        MultiMap configParams = null;
       
        try
        {
            configParams = readConfigFile(_installDir + "/conf/httpd.conf");
        }
View Full Code Here

        throws IOException
    {
        BufferedReader reader = new BufferedReader(new FileReader(filePath));
        String nextLine = null;
       
        MultiMap configParams = new MultiMap();
       
        while ((nextLine = reader.readLine()) != null)
        {
            nextLine = nextLine.trim();
           
            if (nextLine.length() == 0 ||
                nextLine.charAt(0) == '#' ||
                nextLine.charAt(0) == '<')
                continue;
           
            int space = nextLine.indexOf(' ');
            String name = nextLine.substring(0, space);
            String value = nextLine.substring(space + 1);
            configParams.put(name, value);
        }
       
        return configParams;
    }
View Full Code Here

TOP

Related Classes of org.apache.muse.util.MultiMap

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.