Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a perceptable difference between using String.Format and string concatenation in Java?

I tend to use String.format but occasionally will slip and use a concat, I was wondering if one was better than the other.

The way I see it String.Format gives you more power in "formatting" the string and concatenation means you don't have to worry about accidentally putting in an extra %s or missing one out.

String.format is also shorter.

Which one is more readable depends on how your head works.

share|improve this question

9 Answers

up vote 64 down vote accepted

I'd suggest that it is better practice to use String.format. The main reason is that String.format can be more easily localised with text loaded from resource files whereas concatenation can't be localised without producing a new executable with different code for each language.

If you plan on your app being localisable you should also get into the habit of specifying argument positions for your format tokens as well:

"Hello %1$s the time is %2$t"

This can then be localised and have the name and time tokens swapped without requiring a recompile of the executable to account for the different ordering. With argument positions you can also re-use the same argument without passing it into the function twice:

String.format("Hello %1$s, your name is %1$s and the time is %2$t", name, time)
share|improve this answer
13  
+1 did not know about argument ordering. – Omar Kooheji May 29 '09 at 11:19
Can you point me to some documentation that talks about how to work with argument positions/order in Java (i.e., how to reference arguments by their position)? Thanks. – markvgti Aug 20 '11 at 7:28
Better late than never, random Java version: docs.oracle.com/javase/1.5.0/docs/api/java/util/… – Aksel Jan 17 '12 at 19:53

About performance:

 public static void main(String[] args) throws Exception {      
  long start = System.currentTimeMillis();
  for( int i=0;i<1000000; i++){
      String s = "Hi " + i + "; Hi to you " + i*2;
  }
  long end = System.currentTimeMillis();
  System.out.println("Concatenation = " + ((end - start)) + " millisecond") ;

  start = System.currentTimeMillis();
     for( int i=0;i<1000000; i++){
         String s = String.format( "Hi %s; Hi to you %s",i, + i*2);
     }
     end = System.currentTimeMillis();
     System.out.println("Format = " + ((end - start)) + " millisecond");
   }

give tu me:

  • Concatenation = 265 millisecond
  • Format = 4141 millisecond

so Concatenation is mutch more faster than Formatting

share|improve this answer
5  
It is certainly faster. But who's going to call it one million times per second? – BalusC Jan 18 '10 at 17:02
1  
It depends to your requirements. I'have just write a very long time running String manipolation batch application ant it call string concatenation so many times! :) – Icaro Jan 25 '10 at 8:34
4  
They are all bad practice. Use StringBuilder. – Amir Raminfar Aug 11 '11 at 16:37
StringBuilder is out of scope here (the OP question was about comparing String.format over string Concatenation) but have you performace data about String Builder? – Icaro Jan 2 '12 at 10:46
9  
@AmirRaminar: The compiler converts "+" to calls to StringBuilder automatically. – Martin Schröder Feb 23 '12 at 14:50

Which one is more readable depends on how your head works.

You got your answer right there.

It's a matter of personal taste.

String concatenation is marginally faster, I suppose, but that should be negligible.

share|improve this answer
2  
I agree. Thinking about performance differences here is mainly just premature optimisation - in the unlikely event that profiling shows there's a problem here, then worry about it. – Jonik May 29 '09 at 11:01
1  
It's only really a matter of personal taste if the project is small and never intended to be internationalised in any meaningful sense. Otherwise String.format wins out over concatenation in every way. – workmad3 May 29 '09 at 11:07
1  
I disagree. No matter how large the project is, you're hardly going to localise every string that's ever constructed within it. In other words, it depends on the situation (what are the strings used for). – Jonik May 29 '09 at 11:13

Since there is discussion about performance I figured I'd add in a comparison that included StringBuilder. It is in fact faster than the concat and, naturally the String.format option.

To make this a sort of apples to apples comparison I instantiate a new StringBuilder in the loop rather than outside (this is actually faster than doing just one instantiation most likely due to the overhead of re-allocating space for the looping append at the end of one builder).

    String formatString = "Hi %s; Hi to you %s";

    long start = System.currentTimeMillis();
    for (int i = 0; i < 1000000; i++) {
        String s = String.format(formatString, i, +i * 2);
    }

    long end = System.currentTimeMillis();
    log.info("Format = " + ((end - start)) + " millisecond");

    start = System.currentTimeMillis();

    for (int i = 0; i < 1000000; i++) {
        String s = "Hi " + i + "; Hi to you " + i * 2;
    }

    end = System.currentTimeMillis();

    log.info("Concatenation = " + ((end - start)) + " millisecond");

    start = System.currentTimeMillis();

    for (int i = 0; i < 1000000; i++) {
        StringBuilder bldString = new StringBuilder("Hi ");
        bldString.append(i).append("; Hi to you ").append(i * 2);
    }

    end = System.currentTimeMillis();

    log.info("String Builder = " + ((end - start)) + " millisecond");
  • 2012-01-11 16:30:46,058 INFO [TestMain] - Format = 1416 millisecond
  • 2012-01-11 16:30:46,190 INFO [TestMain] - Concatenation = 134 millisecond
  • 2012-01-11 16:30:46,313 INFO [TestMain] - String Builder = 117 millisecond
share|improve this answer
1  
The StringBuilder test doesn't call toString(), so it isn't a fair comparison. I suspect you'll find it's within measurement error of the performance of concatenation if you fix that bug. – Jamey Sharp Oct 31 '12 at 2:33

String.format() is more than just concatenating strings. For example, you can display numbers is a specific locale using String.format().

However, if you don't care about localisation, functionally, there is no difference. Maybe the one is faster than the other, but in most cases it will be neglectable..

share|improve this answer

I haven't done any specific benchmarks, but I would think that concatenation may be faster. String.format() creates a new Formatter which, in turn, creates a new StringBuilder (with a size of only 16 chars). That's a fair amount of overhead especially if you are formatting a longer string and StringBuilder keeps having to resize.

However, concatenation is less useful and harder to read. As always, it's worth doing a benchmark on your code to see which is better. The differences may be negligible in server app after your resource bundles, locales, etc are loaded in memory and the code is JITted.

Maybe as a best practice, it would be a good idea to create your own Formatter with a properly sized StringBuilder (Appendable) and Locale and use that if you have a lot of formatting to do.

share|improve this answer

One problem with .format is that you loose static type safety: You can have not enough arguments for your format, and you can have the wrong types for the format specifiers - both leading to an IllegalFormatException. In contrast the arguments to + can be tested by the compiler.

share|improve this answer

You cannot compare String Concatenation and String.Format by the program above.

You may try this also be interchanging the position of using your String.Format and Concatenation in your code block like the below

    public static void main(String[] args) throws Exception {      
  long start = System.currentTimeMillis();
   for( int i=0;i<1000000; i++){
         String s = String.format( "Hi %s; Hi to you %s",i, + i*2);
     }
     end = System.currentTimeMillis();
     System.out.println("Format = " + ((end - start)) + " millisecond");

  start = System.currentTimeMillis();

for( int i=0;i<1000000; i++){
      String s = "Hi " + i + "; Hi to you " + i*2;
  }
  long end = System.currentTimeMillis();
  System.out.println("Concatenation = " + ((end - start)) + " millisecond") ;


   }

You will be surprised to see that Format works faster here. This is since the intial objects created might not be released and there can be an issue with memory allocation and thereby the performance.

share|improve this answer
1  
have you tried your code? Concatenation is always ten time faster – Icaro Nov 9 '11 at 17:59

There could be a perceptible difference.

String.format is quite complex and uses a regular expression underneath, so don't make it a habit to use it everywhere, but only where you need it.

StringBuilder would be an order of magnitude faster (as someone here already pointed out).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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