What is the best practice to declaring a long string in java? Should I use:
static final String MY_STRING = "my very very long string that spans a more than a page.";
or
static final String MY_STRING = "my very very long string "
+ "that spans more than a page.";
Is there any performance hit for one or the other? What if this were not a static final and the declaration were in a method. I know this should be a really easy question for some of you guys.