[ 
https://issues.apache.org/jira/browse/CONFIGURATION-428?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12930887#action_12930887
 ] 

Terrence Xu commented on CONFIGURATION-428:
-------------------------------------------

Hi Oliver, thanks for your comments, it's indeed a workaround, and has worked 
correctly in my component.

I also look at the source code, and I think it's issue at PropertyConverter.java

{code:title=PropertyConverter.java|borderStyle=solid}
public static String escapeDelimiters(String s, char delimiter) {
    String s1 = StringUtils.replace(s, LIST_ESCAPE, LIST_ESCAPE + LIST_ESCAPE);
    return StringUtils.replace(s1, String.valueOf(delimiter), LIST_ESCAPE + 
delimiter);
}
{code}

> The Windows file path cannot be saved correctly as expected in 
> XMLConfiguration
> -------------------------------------------------------------------------------
>
>                 Key: CONFIGURATION-428
>                 URL: https://issues.apache.org/jira/browse/CONFIGURATION-428
>             Project: Commons Configuration
>          Issue Type: Bug
>    Affects Versions: 1.6
>         Environment: WIN2K3
>            Reporter: Terrence Xu
>
> I want to generate a XML as:
> {code:xml}
> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <Test>
>     <Cluster>
>         <Server location="C:\Server92"/>
>     </Cluster>
> </Test>
> {code}
> Java Code:
> {code:title=Test.java|borderStyle=solid}
> XMLConfiguration config = new XMLConfiguration();
> config.setRootElementName("Test");
> config.addProperty("cluster.serv...@location]",  "C:\\Server92");
> config.save("C:\\NEW.xml");
> {code}
> BUT after running the Java Code, the generated XML looks like:
> {code:xml}
> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <Test>
> <Cluster>
> <Server location="C:\\Server92"/>
> </Cluster>
> </Test>
> {code}
> You will find that the location is "C:\ \Server92", BUT what I expected is 
> "C:\Server92".

-- 
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