Command-line tool for converting PLIST to JSON?
If you are on a Mac you can use the plutil tool on the command line (this comes with the developer tools I believe): plutil -convert json Data.plist as mentioned in the comments, this will overwrite the existing data. To output to a new file plutil -convert json -o Data.json Data.plist