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

com.infomaximum.platform.utils.EscapeUtils Maven / Gradle / Ivy

There is a newer version: 0.1.15p24
Show newest version
package com.infomaximum.platform.utils;

import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;

public class EscapeUtils {

    public static String escapeFileNameFromContentDisposition(String filename) {
        return URLEncoder.encode(filename, StandardCharsets.UTF_8).replaceAll("\\+", "%20");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy