j2plist is a simple property list (plist) converter library. Property lists are frequently used by applications running on Mac OS X or iPhone OS.
More information about plist
## Simple Usage ##
Java code:
```
PList plist = new PList();
Map map = new HashMap();
map.put("name", "John Doe");
map.put("age", 25);
map.put("single", true);
try {
System.out.println(plist.encode(map));
} catch (Exception e) {
e.printStackTrace();
}
```
Result:
single age