On Thu, 29 Mar 2001, Yuriy Zubarev wrote:
> Hello friends,
>
> I was wondering if there is a way to store a relatively big amount of text
> (which can't be fitted in one single line) assigned to some variable in
> the ApplicationResources.properties file. This text eventually will be
> local-sensitive that's why I want to put it into the .properties file.
>
The syntax for what is acceptable in a properties file is actually
documented on the Javadocs for the load() method of the
java.util.Propeties class. There, you will find that a line ending with a
backslash ('\') indicates that the following line is a continuation of the
current property value. This is perfect for long, multiline property
values.
> Thank you for your time.
>
> Best of luck,
> Yuriy Zubarev
>
>
Craig McClanahan