![JAR search and dependency download from the Maven repository](/logo.png)
com.cjy.fat.util.StringUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fat-common Show documentation
Show all versions of fat-common Show documentation
fat the resolver of soa transaction
package com.cjy.fat.util;
public class StringUtil {
private StringUtil(){
}
public static String appendStr(String ...strings ){
StringBuffer sb = new StringBuffer();
for(int i = 0 ; i < strings.length ;i ++){
sb.append(strings[i]);
}
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy