Skip to content

Instantly share code, notes, and snippets.

@An0nymous0
An0nymous0 / base62.java
Created May 22, 2019 03:28
[short url] #java #sort url
package nice.shorturl.utils;
import com.google.common.base.Charsets;
import com.google.common.hash.Hashing;
public class ShortUrlGenerator {
private static final String ALPHABET = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
private static final int BASE = ALPHABET.length();
public static String encode(int num) {