[ 
https://issues.apache.org/jira/browse/CONFIGURATION-300?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Oliver Heger updated CONFIGURATION-300:
---------------------------------------

    Fix Version/s: 1.6

Thank you for spotting this. I will have a look.

We are just in the progress of getting the 1.5 release out. So a fix won't be 
possible before 1.6.

> 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
>             Fix For: 1.6
>
>
> 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