Properties to JSON

// Convert .properties files to JSON

#About Properties to JSON

Free online .properties to JSON converter. Parse Java-style properties files and convert them to structured JSON format. This tool runs entirely in your browser — your data is never sent to a server. Just paste your input, get instant results, and copy with one click. No sign-up or installation required.

#FAQ

What is a .properties file?
A .properties file is a simple text format used primarily in Java applications for configuration. Each line contains a key-value pair separated by = or :, with # or ! for comments.
How are nested keys handled?
Dot-separated keys like "database.host" are expanded into nested JSON objects: { "database": { "host": "value" } }. This gives you a structured JSON output from flat property keys.
</> Embed this tool

Copy this code to embed the tool on your website. Adjust the height to fit your layout.

<iframe src="https://www.browserutils.dev/embed/properties-to-json" width="100%" height="500" frameborder="0" title="Properties to JSON"></iframe>

#Related