前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >nodejs 生成8位短id

nodejs 生成8位短id

作者头像
小贝壳
发布2020-03-05 14:54:20
2.7K0
发布2020-03-05 14:54:20
举报
文章被收录于专栏:贝塔博客贝塔博客

nodejs版:

代码语言:javascript
复制
var uuid = require('uuid');
var shortArray = ["a", "b", "c", "d", "e", "f",
    "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
    "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5",
    "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I",
    "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V",
    "W", "X", "Y", "Z"]
exports.getShortId = () => {
    var uid = uuid.v4();
    uid = uid.replace(/-/g, "");
    var buffer = [];
    for (var i = 0; i < 8; i++) {
        let start = i  4
        let end = i  4 + 4
        var str = uid.substring(start, end);
        buffer.push(shortArray[parseInt(str, 16) % 62])
    }
    return buffer.join("");
}
console.log(this.getShortId())
this.getShortId();java版:public static String[] chars = new String[] { "a", "b", "c", "d", "e", "f",
            "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
            "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5",
            "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I",
            "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V",
            "W", "X", "Y", "Z" };
 
 
public static String generateShortUuid() {
    StringBuffer shortBuffer = new StringBuffer();
    String uuid = UUID.randomUUID().toString().replace("-", "");
    for (int i = 0; i < 8; i++) {
        String str = uuid.substring(i  4, i  4 + 4);
        int x = Integer.parseInt(str, 16);
        shortBuffer.append(chars[x % 0x3E]);
    }
    return shortBuffer.toString();
 
}python版:import uuid    
array = ["a", "b", "c", "d", "e", "f",    
"g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",    
"t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5",    
"6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I",    
"J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V",    
"W", "X", "Y", "Z"]    
def get_short_id():    
id = str(uuid.uuid4()).replace("-", '')    
buffer = []    
for i in range(0, 8):    
start = i  4    
end = i  4 + 4    
val = int(id[start:end], 16)    
buffer.append(array[val % 62])    
return "".join(buffer)
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018-12-05,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档