本文介绍了Java:可能在属性文件中换行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在Java属性文件中的下一行继续一个长字符串?
Is it possible to continue a long string on the next line in a Java properties file?
例如,某种方式
myStr=Hello
World
当我得到 getProperty(myStr)
它会返回Hello World?
and when I get getProperty("myStr")
it will return with "Hello World"?
推荐答案
在行尾的反斜杠可以让您跨越多行,并且忽略开始行的空格:
A backslash at the end of a line lets you break across multiple lines, and whitespace that starts a line is ignored:
myStr = Hello \
World
这样说:
这篇关于Java:可能在属性文件中换行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!