vote up 9 vote down star

Coming from Perl, I sure am missing the "here-document" means of creating a multi-line string in source code:

$string = <<"EOF"  # create a three line string
text
text
text
EOF

In Java I have to have cumbersome quotes and plus signs on every line as I concatenate my multiline string from scratch.

What are some better alternatives? Define my string in a properties file?

Edit: Two answers say StringBuilder.append() is preferable to the plus notation. Could anyone elaborate as to why they think so? It doesn't look more preferable to me at all. I'm looking for away around the fact that multiline strings are not a first-class language construct, which means I definitely don't want to replace a first-class language construct (string concatenation with plus) with method calls.

Edit: To clarify my question further, I'm not concerned about performance at all. I'm concerned about maintainability and design issues.

flag

61% accept rate
1  
StringBuilder.append() is preferable to plus when repeatedly adding to a string because every time you do string1 + string2 you're allocating a new string object and copying the characters from both of the input strings. If you're adding n Strings together you'd be doing n-1 allocations and approximately (n^2)/2 character copies. StringBuilder, on the other hand, copies and reallocates less frequently (though it still does both when you exceed the size of its internal buffer). Theoretically, there are cases where the compiler could convert + to use StringBuilder but in practice who knows. – Laurence Gonsalves May 18 at 17:18
Oops. That part abut the character copies was a bit confused/unclear. Each character gets copied once for every string that comes after it in the concatenation. If all of your strings are one character you get roughly (n^2)/2 character copies. It's really sort of (n^2)/2 string copies, except the later times a string is copied it's copied along with the stuff it's been joined to (but the cost is proprotional to the number of characters, so counting string copies is a bit misleading). Long story short: the cost is roughly quadratic, while StringBuilder tries to make the amortized cost linear. – Laurence Gonsalves May 18 at 17:26
There's an article on this topic -- I've added a link below, but here it is again: java.sun.com/developer/JDCTechTips/… – Paul Morie May 18 at 17:33
Every time I jump into the debugger, + is converted to a StringBuilder.append() call, on Java 1.5. I've had colleagues confusedly tell me StringBuilder has a bug since they debug into code that does not appear to call it and wind up there. – skiphoppy May 18 at 17:34
1  
See also: stackoverflow.com/questions/782810/… – mmyers May 18 at 17:55
show 1 more comment

17 Answers

vote up 1 vote down check

Stephen Colebourne has created a proposal for adding multi-line strings in Java 7.

Also, Groovy already has support for multi-line strings.

link|flag
vote up 11 vote down

Another option may be to store long strings in an external file and read the file into a string.

link|flag
2  
Exactly. Large amounts of text don't belong in Java source; use a resource file of an appropriate format instead, loaded via a call to Class.getResource(String). – sylvarking May 18 at 16:51
1  
Right! You can use Locale + ResourceBundle's also to easily load the I18N text, and then the String.format() call will parse the "\n"'s as newlines :) Example: String readyStr = String.parse(resourceBundle.getString("introduction")); – ATorras May 18 at 17:13
1  
You shouldn't have to externalize a String just because it's multi-line. What if I have a regex that I want to break up into multiple lines with comments? It looks ugly in Java. The @ syntax for C# is much cleaner. – Jeremy Stein Oct 16 at 20:45
Skiphoppy doesn't want to bother with the overhead of dealing with files just to use a paragraph length string constant. I use multiline strings all the time in C++, embedded in my source code, where I want them. – Tim Cooper Nov 6 at 5:35
vote up 8 vote down

It sounds like you want to do a multiline literal, in which case your best option (IMHO) is going to be strings that are +'d together. The other options (StringBuilder and String.format) would only be preferable if you already had your string in an array.

Consider this:

String s = "It was the best of times, it was the worst of times,\n" +
           "it was the age of wisdom, it was the age of foolishness,\n" +
           "it was the epoch of belief, it was the epoch of incredulity,\n" +
           "it was the season of Light, it was the season of Darkness,\n" +
           "it was the spring of hope, it was the winter of despair,\n" +
           "we had everything before us, we had nothing before us";

Versus String Builder:

String s = new StringBuilder()
           .append("It was the best of times, it was the worst of times,\n")
           .append("it was the age of wisdom, it was the age of foolishness,\n")
           .append("it was the epoch of belief, it was the epoch of incredulity,\n")
           .append("it was the season of Light, it was the season of Darkness,\n")
           .append("it was the spring of hope, it was the winter of despair,\n")
           .append("we had everything before us, we had nothing before us")
           .toString();

Versus String.format:

String s = String.format("%s\n%s\n%s\n%s\n%s\n%s", 
               "It was the best of times, it was the worst of times,",
               "it was the age of wisdom, it was the age of foolishness,",
               "it was the epoch of belief, it was the epoch of incredulity,",
               "it was the season of Light, it was the season of Darkness,",
               "it was the spring of hope, it was the winter of despair,",
               "we had everything before us, we had nothing before us"
           );

If you want the newline for your particular system, you either need to use System.getProperty("line.separator"), or you can use %n in String.format.

link|flag
9  
Furthermore, the first version will be automatically concatenated by the compiler, since all the strings are known at compile time. Even if the strings are not known at compile time, it's no slower than StringBuilder or String.format(). The only reason to avoid concatenation with +'s is if you're doing it in a loop. – mmyers May 18 at 17:06
1  
+1 for the example text :) – Michael Borgwardt May 18 at 23:05
vote up 4 vote down

Pluses are converted to StringBuilder.append, except when both strings are constants so the compiler can combine them at compile time. At least, that's how it is in Sun's compiler, and I would suspect most if not all other compilers would do the same.

So:

String a="Hello";
String b="Goodbye";
String c=a+b;

normally generates exactly the same code as:

String a="Hello";
String b="Goodbye":
StringBuilder temp=new StringBuilder();
temp.append(a).append(b);
String c=temp.toString();

On the other hand:

String c="Hello"+"Goodbye";

is the same as:

String c="HelloGoodbye";

That is, there's no penalty in breaking your string literals across multiple lines with plus signs for readability.

link|flag
1  
to be technical, in your first example it generates something more like: String c = new StringBuilder().append(a).append(b).toString(); The difference being that the temporary string builder is out of scope and eligible for garbage collection immediately after the String c=... line, whereas the "temp" string builder would stay around a little longer. – Kip Jun 4 at 16:24
True. My point, of course, is to distinguish when a function gets called at run-time versus when the work can be done at compile time. But you are correct. – Jay Jun 8 at 17:05
vote up 3 vote down

If you define your strings in a properties file it'll look much worse. IIRC, it'll look like:

string:text\u000atext\u000atext\u000a

Generally it's a reasonable idea to not embed large strings in to source. You might want to load them as resources, perhaps in XML or a readable text format. The text files can be either read at runtime or compiled into Java source. If you end up placing them in the source, I suggest putting the + at the front and omitting unnecessary new lines:

final String text = ""
    +"text "
    +"text "
    +"text"
;

If you do have new lines, you might want some of join or formatting method:

final String text = join("\r\n"
    ,"text"
    ,"text"
    ,"text"
);
link|flag
+1 I like the join look the best. – Blindy Nov 3 at 15:59
vote up 2 vote down

you can concatenate your appends in a separate method like

public static String multilineString(String... lines){
   StringBuilder sb = new StringBuilder();
   for(String s : lines){
     sb.append(s);
     sb.append ('\n');
   }
   return sb.toStirng();
}

either way, prefer StringBuilder to the plus notation.

link|flag
1  
Why do I prefer StringBuilder to the plus notation? – skiphoppy May 18 at 16:44
4  
Efficiency, or rather an often-misguided attempt at it. – mmyers May 18 at 16:55
2  
The attempt at efficiency is based, I think, on the fact that the Java compiler implements the string concatenation operator using StringBuilder (StringBuffer in pre-1.5 compilers). There is an old, but well-known article stating that there are performance benefits in certain situations to using StringBuffer (or StringBuilder, now). Here's the link: java.sun.com/developer/JDCTechTips/… – Paul Morie May 18 at 17:32
vote up 2 vote down

Instead of the annoying and unreadable

String newline = System.getProperty ("line.separator");
string1 + newline + string2 + newline + string3

But, the best alternative is to use String.format

   String multilineString = String.format("%s\n%s\n%s\n",line1,line2,line3);
link|flag
7  
How is StringBuilder less annoying and unreadable? – mmyers May 18 at 16:41
My opinion is that it removes the plus signs and quotes, making it more readable, specially when there are more than just 3 lines. Not as good as String.format though. – Tom May 18 at 16:43
1  
Stringbuilder example is at least as unreadable. Also, don't forget that "\n" isn't always a newline, but it's fine for linux and unix machines. – Stefan Thyberg May 18 at 16:45
Plus, just wanted to mention the existance of StringBuilder. – Tom May 18 at 16:46
2  
Replacing one plus sign with a six-character method name and parentheses doesn't look more readable to me, although apparently you're not the only one who thinks that way. It doesn't remove the quotes, though. They are still there. – skiphoppy May 18 at 16:50
vote up 1 vote down

The only way I know of is to concatenate multiple lines with plus signs

link|flag
See String.concat(String); – eleven81 May 18 at 16:45
vote up 1 vote down

Define my string in a properties file?

Multiline strings aren't allowed in properties files. You can use \n in properties files, but I don't think that is much of a solution in your case.

link|flag
The value in a properties file can span multiple lines: Just end all lines but the last with a backslash. This does leave the problem of what you use as the line separator, as this is platform-specific. I suppose you could use a simple \n and then in your code, after reading the property, do a search-and-replace of \n to line.separator. That seems a little kludgey, but I guess you could write a function that retrieves a property and does this manipulation at the same time. Well, all that assumes that you'd be writing these strings to a file, which is a big assumption. – Jay May 19 at 0:43
vote up 1 vote down

A quite efficient and platform independent solution would be using the system property for line separators and the StringBuilder class to build strings:

String separator = System.getProperty("line.separator");
String lines = {"Line 1", "Line 2" /*, ... */};

StringBuilder builder = new StringBuilder(lines[0]);
for (int i = 1; i < lines.length(); i++) {
    builder.append(separator).append(lines[i]);
}
String multiLine = builder.toString();
link|flag
1  
+1 for mentioning the line.separator property :-) – Stefan Thyberg May 18 at 16:54
vote up 1 vote down

Sadly, Java does not have multi-line string literals. You either have to concatenate string literals (using + or StringBuilder being the two most common approaches to this) or read the string in from a separate file.

For large multi-line string literals I'd be inclined to use a separate file and read it in using getResourceAsStream() (a method of the Class class). This makes it easy to find the file as you don't have to worry about the current directory versus where your code was installed. It also makes packaging easier, because you can actually store the file in your jar file.

Suppose you're in a class called Foo. Just do something like this:

Reader r = new InputStreamReader(Foo.class.getResourceAsStream("filename"), "UTF-8");
String s = Utils.readAll(r);

The one other annoyance is that Java doesn't have a standard "read all of the text from this Reader into a String" method. It's pretty easy to write though:

public static String readAll(Reader input) {
    StringBuilder sb = new StringBuilder();
    char[] buffer = new char[4096];
    int charsRead;
    while ((charsRead = input.read(buffer)) >= 0) {
        sb.append(buffer, 0, charsRead);
    }
    input.close();
    return sb.toString();
}
link|flag
vote up 1 vote down

I found this question because I want to have a here doc for multi-line help text in my little java command line utility. It looks like it's not possible currently (circa Java 1.6). However what really bothers me is the number of people who say that I shouldn't even want to have a here doc in java source. How do they know what the developer wants? Just because having a separate file works well in most circumstances does not mean that it works well in all circumstances. For example, I'm building a simple utility class that might get used once or twice a year -- I want to remember how to use it without looking at the source code. I want everything in the .class file, not hanging around in separate text files that I have to remember to copy around with the .class. A here document works perfectly in this case. It's not the best solution for every situation, but it is a good solution for some situations. Laying a blanket "don't do that because I wouldn't do it" is a sign of a closed mind.

link|flag
I agree with you strongly. I'm so tired of hearing "Why would you want to do that?" when I ask how to do something that I have used productively and maintainably in another language. If you have a tangible argument against using it, or if you want to explain a language's rationale for not providing something, I'll listen. If you just don't understand why I want to use it, then you don't have a tangible argument and might as well remain silent. – skiphoppy Sep 22 at 17:59
vote up 0 vote down

As was mentioned here before me, extremely long strings don't belong into Java code. If you have a multi-line string, then put in in a file and read it in. Java is not a scripting language like e.g. PHP and you should not interleave your HTML (etc...) with logic of your code. Read it in from external files.

link|flag
vote up 0 vote down

When a long series of + are used, only one StringBuilder is created, unless the String is determined at compile time in which case no StringBuilder is used!

The only time StringBuilder is more efficient is when multiple statements are used to construct the String.

String a = "a\n";
String b = "b\n";
String c = "c\n";
String d = "d\n";

String abcd = a + b + c + d;
System.out.println(abcd);

String abcd2 = "a\n" +
        "b\n" +
        "c\n" +
        "d\n";
System.out.println(abcd2);

Note: Only one StringBuilder is created.

  Code:
   0:   ldc     #2; //String a\n
   2:   astore_1
   3:   ldc     #3; //String b\n
   5:   astore_2
   6:   ldc     #4; //String c\n
   8:   astore_3
   9:   ldc     #5; //String d\n
   11:  astore  4
   13:  new     #6; //class java/lang/StringBuilder
   16:  dup
   17:  invokespecial   #7; //Method java/lang/StringBuilder."<init>":()V
   20:  aload_1
   21:  invokevirtual   #8; //Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
   24:  aload_2
   25:  invokevirtual   #8; //Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
   28:  aload_3
   29:  invokevirtual   #8; //Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
   32:  aload   4
   34:  invokevirtual   #8; //Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
   37:  invokevirtual   #9; //Method java/lang/StringBuilder.toString:()Ljava/lang/String;
   40:  astore  5
   42:  getstatic       #10; //Field java/lang/System.out:Ljava/io/PrintStream;
   45:  aload   5
   47:  invokevirtual   #11; //Method java/io/PrintStream.println:(Ljava/lang/String;)V
   50:  ldc     #12; //String a\nb\nc\nd\n
   52:  astore  6
   54:  getstatic       #10; //Field java/lang/System.out:Ljava/io/PrintStream;
   57:  aload   6
   59:  invokevirtual   #11; //Method java/io/PrintStream.println:(Ljava/lang/String;)V
   62:  return

To clarify my question further, I'm not concerned about performance at all. I'm concerned about maintainability and design issues.

Make it as clear and simple as you can.

link|flag
vote up 0 vote down

A simple option is to edit your java-code with an editor like SciTE (http://www.scintilla.org/SciTEDownload.html), which allows you to WRAP the text so that long strings are easily viewed and edited. If you need escape characters you just put them in. By flipping the wrap-option off you can check that your string indeed is still just a long single-line string. But of course, the compiler will tell you too if it isn't.

Whether Eclipse or NetBeans support text-wrapping in an editor I don't know, because they have so many options. But if not, that would be a good thing to add.

link|flag
Or, you can use SciTE just to edit your string in wrap-mode, double-quote it, then copy and paste it to Eclipse. – Panu Viljamaa Aug 26 at 20:38
As others have suggested it is better to keep your long strings in external files, so you can modify them without having to recompile, you can pick different resource-directory for different audiences etc. The downside is that this r4equires a bit of overhead, knowing where to read the files from etc. I wish there was a simple but complete code-example on how best to do this – Panu Viljamaa Aug 26 at 20:41
vote up 0 vote down

This is something that you should never use without thinking about what it's doing. But for one-off scripts I've used this with great success:

Example:

    System.out.println(S(/*
This is a CRAZY " ' ' " multiline string with all sorts of strange 
   characters!
*/));

Code:

// From: http://blog.efftinge.de/2008/10/multi-line-string-literals-in-java.html
// Takes a comment (/**/) and turns everything inside the comment to a string that is returned from S()
public static String S() {
	StackTraceElement element = new RuntimeException().getStackTrace()[1];
	String name = element.getClassName().replace('.', '/') + ".java";
	StringBuilder sb = new StringBuilder();
	String line = null;
	InputStream in = classLoader.getResourceAsStream(name);
	String s = convertStreamToString(in, element.getLineNumber());
	return s.substring(s.indexOf("/*")+2, s.indexOf("*/"));
}

// From http://www.kodejava.org/examples/266.html
private static String convertStreamToString(InputStream is, int lineNum) {
    /*
     * To convert the InputStream to String we use the BufferedReader.readLine()
     * method. We iterate until the BufferedReader return null which means
     * there's no more data to read. Each line will appended to a StringBuilder
     * and returned as String.
     */
    BufferedReader reader = new BufferedReader(new InputStreamReader(is));
    StringBuilder sb = new StringBuilder();

    String line = null; int i = 1;
    try {
        while ((line = reader.readLine()) != null) {
            if (i++ >= lineNum) {
                sb.append(line + "\n");
			}
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            is.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    return sb.toString();
}
link|flag
vote up 0 vote down

An alternative I haven't seen as answer yet is the java.io.PrintWriter.

StringWriter stringWriter = new StringWriter();
PrintWriter writer = new PrintWriter(stringWriter);
writer.println("It was the best of times, it was the worst of times");
writer.println("it was the age of wisdom, it was the age of foolishness,");
writer.println("it was the epoch of belief, it was the epoch of incredulity,");
writer.println("it was the season of Light, it was the season of Darkness,");
writer.println("it was the spring of hope, it was the winter of despair,");
writer.println("we had everything before us, we had nothing before us");
String string = stringWriter.toString();

Also the fact that java.io.BufferedWriter has a newLine() method is unmentioned.

link|flag

Your Answer

Get an OpenID
or

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