[
https://issues.apache.org/jira/browse/CONFIGURATION-300?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Emmanuel Bourg resolved CONFIGURATION-300.
------------------------------------------
Resolution: Fixed
I applied a fix on the trunk but it will only works with Java 1.4 or above. I
fixed it on the 2.x branch as well.
> 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.