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

com.github.shoothzj.javatool.util.PathUtil Maven / Gradle / Ivy

There is a newer version: 3.1.15
Show newest version
package com.github.shoothzj.javatool.util;

import lombok.extern.slf4j.Slf4j;

import java.io.File;
import java.util.Arrays;
import java.util.stream.Collectors;

@Slf4j
public class PathUtil {

    public static String pathConnect(String... paths) {
        return Arrays.stream(paths).collect(Collectors.joining(File.separator));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy