tags:

views:

66

answers:

1

I have a Groovy application for Windows and am trying to convert a Hash object to an Apple plist file. What is the best way to go about this? Seems like this is something that must already be solved in Java but I can't seem to find any examples.

Thanks in advance

+1  A: 

Use commons-configuration, it is designed (to a certain extend) to allow you to write data to any configuration format.

Riduidel