devutility.internal.net.UrlUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Some utilities for Java development
package devutility.internal.net;
public class UrlUtils {
public static String concat(String... paths) {
StringBuilder stringBuilder = new StringBuilder();
for (String path : paths) {
stringBuilder.append(path);
stringBuilder.append("/");
}
return stringBuilder.substring(0, stringBuilder.length() - 1);
}
}