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:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Test>
<Cluster>
<Server location="C:\Server92"/>
</Cluster>
</Test>
Java Code:
XMLConfiguration config = new XMLConfiguration();
config.setRootElementName("Test");
config.addProperty("cluster.serv...@location]", "C:\\Server92");
config.save("C:\\test.xml");
BUT after running the Java Code, the generated XML looks like:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Test>
<Cluster>
<Server location="C:\\Server92"/>
</Cluster>
</Test>
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.