It is not easy with XStream, because XStream first marshals the Properties object into intermediary XML before converting the XML to JSON and getting the XML just right is hard.
It would be far easier to loop over the Properties and build the JSON string directly. For example, like this:
StringBuilder builder = new StringBuilder() ;
builder.append('{');
Enumeration keys = props.keys();
while (keys.hasMoreElements()) {
String key = (String)keys.nextElement();
String value = (String)props.get(key);
builder.append('"').append(key).append('"');
builder.append(':');
builder.append('"').append(value).append('"').append(',');
}
builder.deleteCharAt(builder.length()-1);
builder.append('}');
String json = builder.toString();
{ "a" : "b", "x" : "y"}– dogbane Dec 21 '10 at 17:12