All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cjy.fat.util.StringUtil Maven / Gradle / Ivy

There is a newer version: 1.0.6-RELEASE
Show newest version
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