String first = "John";
String last = "Doe";
String name = first + " " + last;
System.out.println(name);

See: Strings

Comments