Properties를 JSON으로 변환

역변환이 필요하신가요?
JSON to Properties Converter

Properties 입력

1

JSON 출력

Properties 데이터를 입력하여 JSON(으)로 변환하세요

변환된 데이터가 여기에 표시됩니다

Properties를 JSON으로 변환하는 방법

  1. 1단계 – Properties 데이터 붙여넣기

    • .properties 파일 내용을 왼쪽 패널에 붙여넣으세요.
    • 도구가 key=value를 파싱하며 # 또는 !로 시작하는 주석은 무시됩니다.
    • Properties 파일을 컴퓨터에서 가져올 수도 있습니다.
  2. 2단계 – JSON 구조 확인

    • app.db.host 같은 점 표기 키는 중첩 JSON 객체로 재구성됩니다.
    • 숫자와 불리언(true/false)은 감지되어 올바른 타입으로 변환됩니다.
    • 계층 구조가 기대한 설정 구조와 일치하는지 확인하세요.
  3. 3단계 – JSON 받기

    • 유효한 JSON을 복사해 최신 웹 앱 또는 Node.js 서비스에서 사용하세요.
    • .json 파일로 다운로드하세요.
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

자주 묻는 질문

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를 JSON으로 변환 | JSONSwiss