INI'den JSON'a Dönüştürücü

Ters dönüşüme mi ihtiyacınız var?
JSON to INI Converter

INI Girdisi

1

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'yi JSON'a nasıl dönüştürürsünüz

  1. Adım 1 – INI içeriğini yapıştırın

    • Standart INI yapılandırmasını (global anahtarlar ve [bölümler]) yapıştırın.
    • ; veya # ile başlayan yorumlar JSON çıktısında yok sayılır.
    • .ini veya .txt dosyalarını bilgisayarınızdan içe aktarın.
  2. Adım 2 – Dönüşümü doğrulayın

    • Global anahtarlar JSON nesnesinin kökünde kalır.
    • [database] gibi bölümler JSON'da iç içe nesnelere dönüşür.
    • Sayısal değerler mümkün olduğunda otomatik olarak tespit edilip tiplenir.
  3. Adım 3 – JSON'u alın

    • JSON çıktısını eski yapılandırmaları modern uygulamalara taşımak için kullanın.
    • Panoya kopyalayın veya .json dosyası olarak indirin.
Example: INI to JSON
# Input INI
driver = postgres

[connection]
host = localhost
port = 5432

// Output JSON
{
  "driver": "postgres",
  "connection": {
    "host": "localhost",
    "port": 5432
  }
}

Related tools

Sık Sorulan Sorular

What is INI format?

INI files are configuration files that store data in sections with key-value pairs. They're commonly used in Windows applications and system configurations.

How are INI sections converted to JSON?

INI sections become JSON objects. Global key-value pairs (outside sections) are placed at the root level, while sectioned data creates nested objects.

What data types are supported?

The converter automatically detects numbers, booleans (true/false), and null values. Arrays can be represented as comma-separated values in INI.

Can I convert nested JSON back to INI?

Yes. Use the JSON to INI converter. Nested objects become INI sections, and arrays are converted to comma-separated values.

Is my data secure?

Yes, all data processing happens entirely in your browser. Your data is never sent to any server, ensuring complete privacy and security.

INI'den JSON'a Dönüştürücü | JSONSwiss