Java字符串拼接的方法有以下几种:
String str1 = "Hello";
String str2 = "World";
String result = str1 + str2; // "HelloWorld"
String str1 = "Hello";
String str2 = "World";
String result = str1.concat(str2); // "HelloWorld"
StringBuilder sb = new StringBuilder();
sb.append("Hello");
sb.append("World");
String result = sb.toString(); // "HelloWorld"
// 或者使用链式调用
String result = new StringBuilder().append("Hello").append("World").toString(); // "HelloWorld"
需要注意的是,StringBuilder类是非线程安全的,而StringBuffer类是线程安全的,所以在单线程环境下,推荐使用StringBuilder类。