2010-09-14 162 views
2

是否有可能在message.properties中有多行的屬性?是否有可能在message.properties中包含多行的屬性?

例如(下面my.property)

my.property=This property will 
be in two lines 
my.property.two=Another property 

我需要這個,我會在屬性中把文件幫助文本......我不想做追加。

任何幫助,將不勝感激。謝謝!

回答

2

是的,這是可能的。

把它們寫這樣的(使用反斜線\作爲轉義字符):

my.property=This property will \ 
be in two lines 
my.property.two=Another property 
+0

我們走吧!謝謝!!! :d – callie16 2010-09-15 00:38:38

相關問題