Ok, então todos devemos saber que você pode incluir variáveis em strings fazendo:
String string = "A string " + aVariable;
Existe uma maneira de fazer isso:
String string = "A string {aVariable}";
Ou seja: Sem ter que fechar aspas e adicionar sinais de mais. É muito pouco atraente.
String.format()
está embutido na linguagem.