I've read that multiline string literals were proposed to be added in Java 7.

Although I can't find any documentation saying definitely that they have been. I'd like to know if they are, because this is something I'd consider switching versions for.

link|improve this question

So @Mike, what's the question again? – mauris Jan 3 '11 at 0:42
1  
There's a proposal from 2008, but nothing in the feature list. There's a library implementation. – marcog Jan 3 '11 at 0:43
Why do you need multi line strings, if you really need them load text files etc. – mP. Jan 3 '11 at 0:43
3  
@mp I'm hoping to avoid discussing why. let's just assume I have a good reason for it. – Mike Jan 3 '11 at 0:44
1  
Having multi-line strings is extremely helpful. Asking why we need it is like asking why toilet rolls were invented, when direct mode would do the job sufficiently. – Blessed Geek Jan 3 '11 at 0:53
feedback

1 Answer

up vote 6 down vote accepted

Multiline string literals are not going to be added to JDK 7. You can check Project Coin's homepage for a list of language changes.

However, you can use Scala, which does support multiline string literals using triple quotes:

var s = """Hello
      World"""
link|improve this answer
thanks for the link, but why did you mention scala? – Mike Jan 3 '11 at 0:52
Because it also targets the JVM. – João Jan 3 '11 at 0:54
can that be useful from the context of Java code? – Mike Jan 3 '11 at 1:08
1  
Shameless evangelist ;-) – pst Jan 3 '11 at 1:18
@Mike I would consider Scala "the evolution" of Java in terms of language design that is not held back by the previous versions of Java although it is still shackled with the general design of the JVM/CLR "OOP" paradigms. (E.g. Scala is to Java as C#5.0+ will be to C#1.0 :-) – pst Jan 3 '11 at 1:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.