Java中可以使用字符串的concat()方法或者使用"+"运算符来合并多个字符串。
使用concat()方法:
String str1 = "Hello";
String str2 = "World";
String result = str1.concat(str2);
System.out.println(result); // 输出 "HelloWorld"
使用"+"运算符:
String str1 = "Hello";
String str2 = "World";
String result = str1 + str2;
System.out.println(result); // 输出 "HelloWorld"
两种方法的效果是一样的,都可以将多个字符串合并成一个新的字符串。