[
https://issues.apache.org/jira/browse/CONFIGURATION-300?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12546392
]
Oliver Heger commented on CONFIGURATION-300:
--------------------------------------------
Yes, this workaround is also mentioned in the bug description for File.toURL().
I intend to drop the JDK 1.3 compatibility anyway, so this can be implemented.
> 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.