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

play.libs.URLs Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package play.libs;

import play.exceptions.UnexpectedException;

import java.net.URLEncoder;

public class URLs {
    public static String encodePart(String part) {
        try {
            return URLEncoder.encode(part, "utf-8");
        } catch (Exception e) {
            throw new UnexpectedException(e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy