Can not create a PropertiesConfiguration if the filename contains a '#'
-----------------------------------------------------------------------

                 Key: CONFIGURATION-300
                 URL: https://issues.apache.org/jira/browse/CONFIGURATION-300
             Project: Commons Configuration
          Issue Type: Bug
    Affects Versions: 1.4
         Environment: Windows 2000
            Reporter: Jean-François Lecomte
            Priority: Minor


It is not possible to load a properties file if there is a '#' in the filename.

To reproduce:

    public static void main(String[] args) throws Exception
    {
        File file = new File("myProperties #1.properties");

        try
        {
            file.createNewFile();
            
            Configuration configuration = new PropertiesConfiguration(file);
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        finally
        {
            file.delete();
        }
}

The method that drops the '#' is : ConfigurationUtils.fileFromURL...


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to