Properties'ten JSON'a Dönüştürücü

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

Properties Girdisi

1

JSON Çıktısı

JSON biçimine dönüştürmek için Properties verisi girin

Dönüştürülen veriler burada görünecek

Properties'i JSON'a nasıl dönüştürürsünüz

  1. Adım 1 – Properties verisini yapıştırın

    • .properties dosyanızın içeriğini sol panele yapıştırın.
    • Araç key=value çiftlerini ayrıştırır ve # veya ! ile başlayan yorumları yok sayar.
    • Bilgisayarınızdan bir properties dosyası içe aktarabilirsiniz.
  2. Adım 2 – JSON yapısını inceleyin

    • Noktalı anahtarlar (ör. app.db.host) iç içe JSON nesnelerine dönüştürülür.
    • Sayılar ve boolean değerler (true/false) tespit edilip doğru tiplenir.
    • Hiyerarşinin beklediğiniz yapılandırma yapısıyla eşleştiğini doğrulayın.
  3. Adım 3 – JSON'u alın

    • Geçerli JSON'u kopyalayıp modern web uygulamalarında veya Node.js servislerinde kullanın.
    • .json dosyası olarak indirin.
Example: Properties to JSON
# Input Properties
app.name=My App
app.version=1.0

// Output JSON
{
  "app": {
    "name": "My App",
    "version": "1.0"
  }
}

Related tools

Sık Sorulan Sorular

What is Properties format?

Properties files are simple text files used for configuration in Java applications. They contain key-value pairs separated by '=' or ':'.

How are nested objects handled?

Properties files don't support nested objects natively. Nested structures are typically represented using dot notation (e.g., database.host=localhost).

What data types are supported?

The converter automatically detects numbers, booleans (true/false), and keeps strings as-is. Unicode escapes (\uXXXX) are also supported.

How are comments handled?

Lines starting with '#' or '!' are treated as comments and ignored during conversion. Inline comments are not supported.

Can I use multiline values?

Yes. Use a backslash (\) at the end of a line to continue the value on the next line. This is especially useful for long text 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.

Properties'ten JSON'a Dönüştürücü | JSONSwiss