JSON To Properties Online

JSON to Properties Converter Online

JSON to Properties Converter is easy to use tool to convert JSON to Properties. Copy, Paste and Convert.

It offer tools for:

  1. Generate Properties from JSON string online (json to Properties).
  2. Generate json string from Properties online (Properties to json).

How to use JSON to Properties Converter ?

  1. In the above textarea field write or paste your json/Properties string.
  2. Click 'JSON to Properties' button to generate your Properties code. Or Click 'Properties to JSON' button to generate your json code.
  3. Click 'Copy' button to paste it into your clipboard, you can also download the result file.

Convert json string to Properties example

Input json string

{
  "id":1,
  "name":"John",
  "age":24,
   "db":{
      "tyle":"mysql",
      "host":"127.0.0.1",
      "port":3306,
      "username":"root",
      "password":"root"
   }
}

Output Properties result: 

id=1
name=John
age=24
db.tyle=mysql
db.host=127.0.0.1
db.port=3306
db.username=root
db.password=root