Convert JSON to PList

Form for JSON converting to PList

This form allows you convert JSON object to PList data, paste or upload your JSON file below:


Your result can be seen below.

Result of JSON conversion to PList


Move to "Paste Code" for Save it

About JSON conversion to PList

What is PList?

A PLIST file is a settings file, also known as a “properties file” used by macOS, iOS, NeXTSTEP, and GNUstep programming frameworks. It contains properties and configuration options for various programs. PLIST files are formatted in XML and based on the Apple Core Foundation DTD.

About JSON object conversion to PList data

The JSON to PList Converter was created for online transform JSON(JavaScript Object Notation) object into PList(Property List) data. This can be useful for testing, debugging or importing data from an JSON file into a PList. No need to download or install any software.

How it Works?

Just paste your JSON data to the textarea above and click to the button "Convert" and you will instantly get PList xml.

Example of JSON conversion to PList

Before:
{
	"Website": "wtools.io",
	"Safe": true,
	"Count of tools": 225,
	"price": 100.23,
	"Menu": ["Sandbox", "Paste Code", "Snippets", "Generators", "Checks", "Convertors"]
}
After:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>Website</key>
		<string>wtools.io</string>
		<key>Safe</key>
		<true/>
		<key>Count of tools</key>
		<integer>225</integer>
		<key>price</key>
		<real>100.23</real>
		<key>Menu</key>
		<array>
			<string>Sandbox</string>
			<string>Paste Code</string>
			<string>Snippets</string>
			<string>Generators</string>
			<string>Checks</string>
			<string>Convertors</string>
		</array>
	</dict>
</plist>
After the conversion, you can apply the PList data to your project or use it for some other purpose.