Properties to YAML
Convert Java .properties files to YAML — handles dot-notation nesting and comments.
app:
name: MyApp
version: 1.0.0
debug: 'false'
db:
host: localhost
port: 5432
name: mydb
pool:
size: 10
timeout: 30000
server:
port: 8080
max-connections: 200How .properties to YAML conversion works
Dot-separated keys like db.pool.size=10 are automatically converted to nested YAML structures. Comments (# or !) are stripped. Scalar values that could be misread as YAML booleans or numbers are quoted automatically.
For the reverse direction, try YAML to JSON. To go from Properties to JSON instead, use Properties to JSON.
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.