".properties 파일"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
5번째 줄: 5번째 줄:
* 확장자: <code>.properties</code>
* 확장자: <code>.properties</code>


<source lang='properties'>
<syntaxhighlight lang='properties'>
# You are reading the ".properties" entry.
# You are reading the ".properties" entry.
! The exclamation mark can also mark text as comments.
! The exclamation mark can also mark text as comments.
20번째 줄: 20번째 줄:
# Unicode
# Unicode
tab : \u0009
tab : \u0009
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2021년 7월 17일 (토) 19:00 기준 최신판

1 개요[ | ]

.properties
.properties 파일, 프로퍼티스 파일
  • 주로 Java 계열의 설정파일
  • 확장자: .properties
# You are reading the ".properties" entry.
! The exclamation mark can also mark text as comments.
# The key and element characters #, !, =, and : are written with
# a preceding backslash to ensure that they are properly loaded.
website = http\://en.wikipedia.org/
language = English
# The backslash below tells the application to continue reading
# the value onto the next line.
message = Welcome to \
          Wikipedia!
# Add spaces to the key
key\ with\ spaces = This is the value that could be looked up with the key "key with spaces".
# Unicode
tab : \u0009

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}