Properties 입력
JSON 출력
Properties 데이터를 입력하여 JSON(으)로 변환하세요
변환된 데이터가 여기에 표시됩니다
Java Properties 설정 파일을 JSON으로 변환
Properties 데이터를 입력하여 JSON(으)로 변환하세요
변환된 데이터가 여기에 표시됩니다
1단계 – Properties 데이터 붙여넣기
2단계 – JSON 구조 확인
3단계 – JSON 받기
# Input Properties
app.name=My App
app.version=1.0
// Output JSON
{
"app": {
"name": "My App",
"version": "1.0"
}
}Properties files are simple text files used for configuration in Java applications. They contain key-value pairs separated by '=' or ':'.
Properties files don't support nested objects natively. Nested structures are typically represented using dot notation (e.g., database.host=localhost).
The converter automatically detects numbers, booleans (true/false), and keeps strings as-is. Unicode escapes (\uXXXX) are also supported.
Lines starting with '#' or '!' are treated as comments and ignored during conversion. Inline comments are not supported.
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.
Yes, all data processing happens entirely in your browser. Your data is never sent to any server, ensuring complete privacy and security.