INI Girdisi
JSON Çıktısı
JSON biçimine dönüştürmek için INI verisi girin
Dönüştürülen veriler burada görünecek
INI yapılandırma dosyalarını JSON formatına dönüştürün
JSON biçimine dönüştürmek için INI verisi girin
Dönüştürülen veriler burada görünecek
Adım 1 – INI içeriğini yapıştırın
Adım 2 – Dönüşümü doğrulayın
Adım 3 – JSON'u alın
# Input INI
driver = postgres
[connection]
host = localhost
port = 5432
// Output JSON
{
"driver": "postgres",
"connection": {
"host": "localhost",
"port": 5432
}
}INI files are configuration files that store data in sections with key-value pairs. They're commonly used in Windows applications and system configurations.
INI sections become JSON objects. Global key-value pairs (outside sections) are placed at the root level, while sectioned data creates nested objects.
The converter automatically detects numbers, booleans (true/false), and null values. Arrays can be represented as comma-separated values in INI.
Yes. Use the JSON to INI converter. Nested objects become INI sections, and arrays are converted to comma-separated values.
Yes, all data processing happens entirely in your browser. Your data is never sent to any server, ensuring complete privacy and security.