生成时间序列号

Posted 云晴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成时间序列号相关的知识,希望对你有一定的参考价值。

package com.myupload.util;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Random;

public class IPTimeStamp {
    private SimpleDateFormat sdf = null;
    private String ip = null;
    
    public IPTimeStamp(String ip) {
        this.ip = ip;
    }
    
    public String getIPTimeRand() {
        StringBuffer buf = new StringBuffer();
        if(this.ip != null) {
            String s[] = this.ip.split("\\.");
            for(int i=0; i<s.length; i++) {
                //buf.append(this.addZero(s[i], 3));//这种更复杂一点
                buf.append(s[i]);//ip+时间戳+随机10以内3个数
            }
        }
        buf.append(this.getTimeStamp());
        Random r = new Random();
        for(int i=0; i<3; i++) {
            buf.append(r.nextInt(10));
        }
        return buf.toString();
    }
    
    /*public String addZero(String str, int len) {
        StringBuffer s = new StringBuffer();
        s.append(str);
        while(s.length() < len) {
            s.insert(0, "0");
        }
        return s.toString();
    }*/
    
    public String getDate() {
        this.sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
        return this.sdf.format(new Date());
    }
    
    public String getTimeStamp() {
        this.sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS");
        return this.sdf.format(new Date());
    }
}

 

以上是关于生成时间序列号的主要内容,如果未能解决你的问题,请参考以下文章

postman 自动生成 curl 代码片段

postman 自动生成 curl 代码片段

R 知识片段

R 知识片段

vscode 用户代码片段 vue初始化模板 Snippet #新加入开头注释 自动生成文件名 开发日期时间等内容

前端开发工具vscode如何快速生成代码片段