Properties to JSON Converter
Convert Java .properties files to JSON and back — handles comments, nested keys, and blank lines.
About .properties file format
Java .properties files store configuration as key=value or key: value pairs, one per line. Lines starting with # or ! are comments and are skipped. Keys with dots (e.g. db.host) can be converted to a nested JSON object ({"db":{"host":"…"}}) or kept as flat keys.
The JSON → .properties direction flattens the object using dot notation, making it easy to round-trip configurations. For other config formats see YAML to JSON, TOML to JSON, and ENV File Parser.
Private & free — this tool runs entirely in your browser.
Recommended: IndieKit — Ship your Next.js startup in days.affiliate
Related Converters tools
JSON to YAML
Convert JSON into clean, readable YAML instantly.
YAML to JSON
Convert YAML configuration into valid JSON.
JSON to CSV
Flatten a JSON array of objects into CSV rows.
CSV to JSON
Parse CSV with headers into a JSON array of objects.
JSON to XML
Convert JSON structures into nested XML markup.
JSON Minifier
Strip whitespace to produce compact JSON.
JSON to TypeScript
Generate TypeScript interfaces from a JSON sample.
JSON to SQL
Turn a JSON array of objects into SQL INSERT statements.