
io.gs2.core.util.EncodingUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs2-java-sdk Show documentation
Show all versions of gs2-java-sdk Show documentation
Game Server Services SDK for Java
The newest version!
package io.gs2.core.util;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
public class EncodingUtil {
public static String urlEncode(String value) {
try {
return URLEncoder.encode(value, "UTF-8");
} catch (UnsupportedEncodingException e) {
return value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy