是否有 C# 的 HttpServerUtility.UrlTokenEncode 的 Java 等价物?

Is there a Java equivalent for C#'s HttpServerUtility.UrlTokenEncode?

如何在 Java 中编码一个将在 C# 中使用 HttpServerUtility.UrlTokenDecode 解码的字符串?

经过一天的努力,这个简单的方法完成了工作:

public string ToUnsafeUrl(this string str)
    {
        if (str == null)
            return null;
        return str.Replace("-", "+").Replace("_", "/");
    }

以下方法复制了 C# 功能。

public static String urlTokenEncode(String inputString) {
    if (inputString == null) {
        return null;
    }
    if (inputString.length() < 1) {
        return null;
    }

    // Step 1: Do a Base64 encoding
    String base64Str = new String(java.util.Base64.getEncoder().encode(inputString.getBytes()));

    // Step 2: Transform the "+" to "-", and "/" to "_"
    base64Str = base64Str.replace('+', '-').replace('/', '_');

    // Step 3: Find how many padding chars are present at the end
    int endPos = base64Str.lastIndexOf('=');
    char paddingChars = (char)((int)'0' + base64Str.length() - endPos);

    // Step 4: Replace padding chars with count of padding chars
    char[] base64StrChars = base64Str.toCharArray();
    base64StrChars[endPos] = paddingChars;

    return new String(base64StrChars);
}